SSMA Oracle Error While Collecting Data - sql

I am encountering an error "Error While Collecting Data" even with successful connection.
How can I begin to troubleshoot this item? I am using oracle 10.2.0
What are some alternatives to using SSMA to migrate data from Oracle to SQL Server?
This similar post says it may be a permissions issue along with the following blog.
Permissions Blog

Related

Oracle database not compatible with oracle business intelligence 12c

I'm following the below tutorial to install Oracle business intelligence 12c on Linux 7.7
,my Oracle database is already installed and working fine.
http://bisoftdiary.com/obiee12c_linux_installation/
when I run the script ./config.sh
after reach to this step it says ensure the database is compatible,I really don't understand what is wrong with my database ?
I have passed the issue by making the password more complex, but unfortunately the error message doesn't tell me the issue with my password ,it should mention clearly the issue with my password so I can correct it.

Solrj - SQL Query with SQL Editor

I am working with Solr Cloud. The Solr version is 4.10.3. I use the following version of solrj: solr-solrj-6.0.0.jar. I have implemented the driver Software
to Squirrel or DBVisualizer.
I am able to connect to the cluster over zookeeper. After that I tried to query
my collection and get the following error:
Error: java.sql.SQLException: java.io.IOException: --> http://myserver:8983/solr/cloudera_tutorial_tweets_shard2_replica1/: An exception has occurred on the server, refer to server log for details.
SQLState: null
ErrorCode: 0
I am not able to find more log information on my servers in solr log.
So, maybe someone can give me some advice for further debugging.
Could it be possible that my version of solr is to old for using sql-queries?
Yes, your Solr version is (way) too old. The SQL interface (/sql, named ParallelSQL) was introduced with Solr 6.

User account pool creation encountered failure while executing the registerRext.exe in SQL server 2016 R services

the cmd execution of registerRExt.exe
I am trying to install RRE(Revolution R Enterprise) v7.5 with RR0 3.2.2(Revolution R Open) on a SQL Server 2016 RC0 default instance. All the steps shown in the https://msdn.microsoft.com/en-us/library/mt590808.aspx have been completed and the error occurs in the Post installation Server configuration scripts. The script has also been replaced by the updated script for RC0 shown on the msdn site but still I get the same error on running the registerRExt.exe file.
The site shows while installing the instance the account name for Server Database engine has to be MSSQLSERVER, however this had also resulted in an error stating wait on database recovery handle failed which was sorted by changing the account name of Database engine to NT AUTHORITY/SYSTEM(I provided this info as it can also be the cause of the problem) . Now I need to sort the user pool failure. Any help would be appreciated..thanks in advance
SQL 2016 RC1 was just released https://blogs.technet.microsoft.com/dataplatforminsider/2016/03/18/sql-server-2016-release-candidate-1-now-available/.
SQL RC1 has a newer version 8.0.1 version of RRE. I suggest your try to install it and reply to this thread again if you hit the same failure. https://msdn.microsoft.com/library/mt590809.aspx has the details on where to find Microsoft R Open 8.0.1 and Revolution R Enterprise 8.0.1.
If the issue persists RevoScaleR\rxLibs\x64\registerrext.log would have more details on the exact failure - do share that.
I was able to sort out the issue..It was because I was installing the SQL server on domain controller and ignored the warning while install, but then changing some rules and demoting it from Server Manager worked and the install was successful.
However I do know there may be some better solution to that as all the other user accounts got reset in the process.

Import Azure Database to Local Not Supported

I have a database, currently hosted out on Microsoft Azure. I exported the database to my storage account and I attempted to import the database to a local instance of SQL 2012.
When importing, I am able to copy the BACPAC file from Azure, but I get an error on "Creating database on target," with the error reading:
Count not load schema model from package. (Microsoft.SqlServer.Dac)
ADDITIONAL INFORMATION:
Internal Error. The internal target platform type
SqlAzureDatabaseSchemaProvider does not support schema file version
'2.5'.
I have installed SQL Server Data Tools for 2012 from this download, which still was not able to fix the problem.
This was an old bug being reported a couple of years back that was fixed by an update to SSDT in 2012. Have you got this update: https://msdn.microsoft.com/en-us/jj650015?f=255&MSPPError=-2147217396
More discussion on Technet about this issue: https://social.technet.microsoft.com/Forums/en-US/66a4dfeb-c626-45eb-af3c-00e7e5996203/bacpac-file-import-from-windows-azure-fails?forum=ssdt

Problem running SSIS with ORACLE Data Source problem in Windows 64 bit

I've managed to connect my SQL Server 2005 in Windows 64 bit server with ORACLE database. (Thanks to Mr. Jeyong Park :http://knol.google.com/k/jeyong-park/accessing-oracle-data-source-from-64bit/3vywlm4f31xae/12)
The problem is :
In SSIS when I used Oracle as a OLE DB Data Source and previewed the data, it works, however, when I run the Package, the OLE DB Data Source task failed with the message :
[OLE DB Source [10882]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.
The AcquireConnection method call to the connection manager "PROD_cm" failed with error code 0xC0202009.
There may be error messages posted before this with more information on why the AcquireConnection method call failed.
Since I can preview the data, I think there's no problem with the connection.
Please help...
When I encountered this problem a year ago with SQL Server 2008 on Windows Server 2003 64-bit the issue was caused by incorrect drivers. What is the version of the Oracle database to which you are connecting? If you are connecting to a 8g or 9i Oracle server, then you need to use the 9i Oracle drivers. If you are connecting to a 10g or better server, then you can use the 11i drivers.
Have you tried running the SSIS package while logged into the server as the SQL Server Agent service account or have you only tested this on your workstation? If it works on your workstation and doesn't work while logged into the server as the service account, then this screams driver issue to me.
Another possible problem is that you tnsnames.ora file may not be correctly setup. The file contents should be something like the below code for the 9.2 drivers. Please note you need to replace , , and with appropriate values.
# tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\client_1\NETWORK\ADMIN\tnsnames.ora
# Generated by Oracle configuration tools.
<SERVER_NAME> =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = <IP_ADDRESS>)(PORT = <PORT_NUMBER>))
)
(CONNECT_DATA =
(SID = <SERVER_NAME>
(SERVER = DEDICATED)
)
)
One more possible solution. If you can get the linked server connection working and cannot get the data flow to work for some reason, then you could execute a linked server query to pull down the data. I remember doing this for about 6 months when we couldn't get the MYSQL drivers to work with the CTP of SQL Server 2008. Eventually we found the right solution, but this helped us through the short-run period to get up and running.
One of The following should work:
Check the tnsnames.ora file - It should have the connection details to the Oracle DB hat you are trying to connect through your package.
Check if the Oracle DB you are trying to connect to is working. I wasted around two days finding a root cause of the error and later came to know that the Oracle DB was shut down.
Check that the passowrds are intact in the configuration manager/Connection string.
If you have been working for long on the package try closing and opening it again. The