Table migration from SQL Server 2019 to Oracle 19c using dblinks - sql-server

I need to migrate multiple tables from SQL Server 2019 into Oracle 19c. currently I am using dblink connection from SQL Server and it can migrate about 125k row per minute which is too long for me. Right now, I am using SELECT from SQL Server then INSERT into Oracle inside a procedure. I need a faster query or a query that can commit every 1 million rows so that the query can be inserted even the query is stuck. Thanks

Related

Replicate Changes from oracle to Sql Server

I have Oracle database 11 g in which I have many tables. I want to replicate few of these tables in SQL server so whenever a new record is inserted in oracle table I also want to update in SQL server table. I have created linked server but don't know what to do next. Kindly guide me how can I replicate changes on SQL server side.
Use Goldengate (An Oracle tool) that can do bi-directional replication from Oracle to Sql Server. See this:
http://www.oracle.com/us/products/middleware/data-integration/goldengate/using-gg11g-for-sql-server-1489372.pdf

Is there any way to track who has disabled/enabled the SQL Agents Jobs in MS SQL SERVER 2016

What are the different ways one can track (DBA) who has disabled/enabled the SQL Agents Jobs in MS SQL SERVER 2016?
SQL server doesn't capture job modification.
Alternatively, you can create a trigger in system table dbo.sysjobs to record this.

linked server compares between Oracle and SQL Server

We are doing a migration from Oracle 10g to SQL Server 2014. Once I set up the linked Server connection in SQL Server to the Oracle DB will I be able to run a statement like the following:
select * from linkedservername...schema.table
except
select * from Servername.database.schema.table
Not all queries will be this easy as I'll have to do some data manipulation on the oracle side. Will I need to use Oracle syntax for that or once I have the linked server set up will everything be in T-SQL for querying purposes?
Thanks

SQL Server : Remote Linked Oracle DB Query to include ROWID?

I am not too familiar with how the linked remote databases work in SQL Server. But I am trying to query to a linked remote oracle database table using SQL syntax on SQL Server. I am having a issue trying to query a ROWID, which is proprietary to Oracle PL/SQL.
This is query I am trying to use:
select t.*, t.rowid
from owner.DMIS_TBL t
Is there a way to input a Oracle based query in SQL Server for a remote database? Querying all other columns in the Oracle tables works fine but if I specify the ROWID it does not recognize it.. I know the ROWID this is a pseudo column but I need to have this for migration purposes to use as the record id in SQL Server. Maybe it won't work in SQL syntax because the datatype is ROWID and SQL Server doesn't support this.

migrate sharepoint data to a table in sql server database

I have two questions:
1) I wanted to migrate some data that is in sharepoint (listview) to a table in MS SQL Server 2008 R2. The data is not huge 50 -60 rows of data with 6 columns. Also, whenever the data is updated in sharepoint, it has to automatically update in ms sql server 2008R2.
2) Can the data be queried from sharepoint and updated in sql server using Stored Procedures?
Regards,
Jude

Resources