Il percorso tipico seguito dai nostri clienti durante l'integrazione dei dati Oracle® e SQL Server consiste nell'utilizzare Oracle® Heterogeneous Services con il nostro driver ODBC di SQL Server. Questo approccio è descritto nel nostro tutorial DG4ODBC.
Un metodo alternativo consiste nell'usare il bcp
strumento incluso nella distribuzione del driver ODBC di SQL Server insieme a Oracle® SQL*Loader
. Puoi usare una named pipe come canale di dati tra bcp
e SQL*Loader
cioè non è necessario utilizzare bcp
per scrivere i dati di SQL Server in un file fisico e quindi utilizzare questo file come origine dati per SQL*Loader
(anche se puoi, se preferisci).
- Crea alcuni dati di esempio in SQL Server:
$ cd /usr/local/easysoft/unixodbc/bin $ ./isql.sh -v SQLSERVER_SAMPLE +---------------------------------------+ | Connected! | | | | sql-statement | | help [tablename] | | quit | | | +---------------------------------------+ SQL> create table bcptest (c1 int, c2 varchar(20)) SQLRowCount returns -1 SQL> insert into bcptest values (1, 'Hello'),(2,'World') SQLRowCount returns 2 SQL> select * from bcptest +------------+---------------------+ | c1 | c2 | +------------+---------------------+ | 1 | Hello | | 2 | World | +------------+---------------------+ SQLRowCount returns -1 2 rows fetched SQL>
- Crea una tabella in Oracle® per contenere i dati di SQL Server:
SQL> create table bcptest (c1 int, c2 varchar(20))
- Crea una pipe con nome:
$ mknod /tmp/bcp-pipe p
- Crea e compila un
SQL*Loader
file di controllo:$ cat /tmp/bcp.ctl load data append into table bcptest fields terminated by "\t" ( c1, c2 )
- Esegui
SQL*Loader
in background, dove rimarrà in attesa dell'arrivo dei dati:$ cd /u01/app/oracle/product/11.2.0/xe/bin $ ./sqlldr myuser/password data=/tmp/bcp-pipe control=/tmp/bcp.ctl &
- Usa
bcp
per scrivere nella pipe:$ cd /usr/local/easysoft/sqlserver/bcp/ $ ./bcp test.dbo.bcptest out /tmp/bcp-pipe -c -S myserver:1433 -U sa -P password
Il SQL*Loader
il processo legge i dati dalla pipe, inserisce i record in Oracle® e termina:
$ SQL*Loader: Release 11.2.0.2.0 - Production on Fri Nov 4 07:18:53 2016 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. -bash-4.1$ Commit point reached - logical record count 2 [1]+ Done ./sqlldr myuser/mypassword data=/tmp/bcp-pipe control=/tmp/bcp.ctl &
I record sono ora in Oracle®, come mostrato dalla seguente query in SQL*Plus
:
$ ./sqlplus SQL> select * from bcptest; C1 C2 ---------- -------------------- 1 Hello 2 World