G
Guest
Hi,
Can some one please post a sample or site where I can get code for
transfering data from a database (Oracle) and put it in another (Access).(or
from access to odbc oracle..) The data can be SELECTed with filters and
modifications for reporting purposes.
It will be great if the sample could show I could use dataset as a temporary
storage and use it to push data into multiple databases, either into new
tables or append tables in databases.
thanks,
sahridhayan
PS: There was a post with an example something like below.. will this work
perfectly fine for large..inserts, this idea is very close to what I wish to
do. But I am open to any other procedre:
=============================================================
Dim cmdCopy As OleDbCommand
cmdCopy = New OleDbCommand("SELECT * INTO [admin_document_new] FROM
[Provider={MSDAORA.1\};User ID=admin;Data
Source=src;Password=***].[document]", myLocalConnection)
nRows = cmdCopy.ExecuteNonQuery()
=============================================================
Can some one please post a sample or site where I can get code for
transfering data from a database (Oracle) and put it in another (Access).(or
from access to odbc oracle..) The data can be SELECTed with filters and
modifications for reporting purposes.
It will be great if the sample could show I could use dataset as a temporary
storage and use it to push data into multiple databases, either into new
tables or append tables in databases.
thanks,
sahridhayan
PS: There was a post with an example something like below.. will this work
perfectly fine for large..inserts, this idea is very close to what I wish to
do. But I am open to any other procedre:
=============================================================
Dim cmdCopy As OleDbCommand
cmdCopy = New OleDbCommand("SELECT * INTO [admin_document_new] FROM
[Provider={MSDAORA.1\};User ID=admin;Data
Source=src;Password=***].[document]", myLocalConnection)
nRows = cmdCopy.ExecuteNonQuery()
=============================================================