Unable to retrieve tables from SQL Server using Oracle's sql developer - sql-server

I am unable to browse SQL Server tables using Oracle's SQL Developer. I am able to connect to SQL Server using SQL Developer, but when I try to expand the database in SQL Server, I get this error:

in newer version (Oracle IDE 19.2.0.206.2117 with Thirty party jtds-1.3.1.jar) of Oracle SQL Developer it is working.
Ivo.

Related

Migration of SQL Server 2012 database to Oracle 12c

I'm trying to migrate a SQL Server 2012 database backup file, which I wanted to migrate to Oracle 12c. I tried to use SQL Developer tool for migration using this reference:
http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm
The problem is in SQL Developer tool, I didn't see any option where I can generate database capture script for SQL Server 2012, because there is no option which is showing up there.
I'm open for other suggestions as well. the SQL Server is installed on my same system, where I've installed Oracle 12c, so even if there is way by which we can directly connect with SQL Server on my local system.
Hello for migration from SQL SERVER to Oracle. There are many articles are available on web. You can google it. For as one reference use this article and try for migration of data.

SQL Server Migration Assistant - How to migrate access to SQL Server 2008 r2?

I'm trying to migrate our Access Database to a database on SQL Server 2008 R2.
When I try to migrate it, I get an error message:
You cannot connect to an older version (SQL Server 2008) of target SQL Server from a higher version SSMA project (Project type = SQL Server 2014)
I downloaded and did a 'Typical' installation of 'Microsoft SQL Server Migration Assistant v5.3 for Access' but when it loads, I get the loading screen for a brief second that says 'Microsoft SQL Server 2014' and then the Migration Assistant loads.
I try and migrate my databases but at the end, I get the above error message.
I have MS Sql Server 2014 Management Studio installed on my computer. Perhaps, the migration assistant is using the native engine to load the Migration Assistant? Anyone have any ideas how to fix this?
During the migration, you get a screen where you can specify the Migration name and the path for the Migration Project. In that same window, there is another drop-down where you can specify what you would like to migrate to. The choices are SQL Server 2014, 2012, 2008 and 2005.
I selected 2008 from the drop-down in the 'Migrate To:' field and clicked on Next.
Migration was eventually successfully completed.

Connect to MS SQL server from PL/SQL Developer

I have PL/SQL Developer installed on my machine.
Version:-7.1.2
I want to connect to MS sql server from PL/SQL Developer. I have SQL server address, username and password with me.
I tried to search for the solution every possible way.
Can anybody help me with this?
You cannot. Directly from their web page (emphasis mine):
PL/SQL Developer is an Integrated Development Environment that is specifically targeted at the development of stored program units for Oracle Databases.
To connect to MS SQL Server from your desktop you need SQL Server Management Studio (free), Azure Data Studio (free), Toad for SQL Server ($$$), or another client that advertises connectivity to SQL Server.
open sql server from server objects add a linked servers to oracle
add stored procedure that will insert into the table in oracle and reads from sql table.
example:
INSERT INTO OPENQUERY (ERPTEST, 'SELECT EMPLOYEE_ID,FIRST_NAME FROM EMPLOYEE')
select Employee_Number,Full_Name_1 from [EmpDB].[dbo].[EMPLOYEES];

upsizing ms access 2007 db to sql server 2008

i keep getting an error:
The upsizing wizard does not work with this version of SQL Server to which your access project is connected.
has anyone else seen this issue.
There is another version of the Upsizing Wizard: Migrating to SQL Server 2008
It's called the SQL Server Migration Assistant for Access (SSMA Access) and you can download here.
You can use DBWScript to generate sql scripts, such as CREATE TABLE.

copying oracle to sqlserver 2005 jdbc

Is there any way of copying a database from oracle to sqlserver 2005? Thanks
You can migrate from Oracle to SQL Server with Microsoft's SQL Server Migration Assistant. It is available both to SQL Server 2005 and 2008.
If you have lots of (complicated) stored procedures and such, the migration might get a bit tedious. I have only experience with databases with simple procedures and could just rewrite them and do the data copy to empty tables in SQL Server with the import functionality using Oracle connector (usable from SQL Server if you have installed Oracle client tools to the SQL Server machine). This way I didn't even need to use the Migration Assistant tool.

Resources