August 7, 2023 at 5:04 am
I work on sql server 2017 i need to know what technology will be quickly and fast for read data from db2 database on sql server
without using linked server
so I need which technology or technique i will use to read data from DB2 Database on sql server 2017 database
August 7, 2023 at 11:28 am
You can use SQL Server Integration services (SSIS) and also there are many other 3rd party tools in the market.
Azure data factory, Informatica, Ab Initio, Jitterbit, Mulesoft, BOOMI etc.
=======================================================================
August 7, 2023 at 8:45 pm
August 7, 2023 at 9:10 pm
We use the following providers for linked servers and use OPENQUERY, which proved much faster than OPENROWSET (with the disclaimer that check was made years ago). This allows the query to be written in the DB2 language and executed on the DB2 machine. We load up a table from that and we're ready to rock with joins or whatever. I'll recommend that you NEVER do a join to a LinkedServer. 😀
p.s. And, sorry... just realized you specified "No Linked Server" in your post.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2023 at 1:41 pm
To read data from a DB2 database on SQL Server 2017, you can use the Linked Server feature. First, create a linked server using the "sp_addlinkedserver" system stored procedure. Specify the DB2 server details, like server type, provider, and connection string. Then, use four-part naming convention ("linked_server.catalog.schema.table") to access DB2 tables from SQL Server queries. You might need to install the appropriate OLE DB provider for DB2. This approach allows you to fetch data from DB2 within SQL Server environment seamlessly, enabling cross-database querying and integration.
August 17, 2023 at 3:27 pm
To read data from a DB2 database on SQL Server 2017, you can use the Linked Server feature. First, create a linked server using the "sp_addlinkedserver" system stored procedure. Specify the DB2 server details, like server type, provider, and connection string. Then, use four-part naming convention ("linked_server.catalog.schema.table") to access DB2 tables from SQL Server queries. You might need to install the appropriate OLE DB provider for DB2. This approach allows you to fetch data from DB2 within SQL Server environment seamlessly, enabling cross-database querying and integration.
Did you read the original post? I suspect not, because the words 'without using linked server' appear in it 🙂
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
August 25, 2023 at 10:06 am
This was removed by the editor as SPAM
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply