Hello all. I would like to insert data from an Access 97 table/query into an existing Oracle 8 table. I realize that a link table query should work, and I have proven that it does in my environment. However, because I am linking to Siebel tables, some of the links fail, as the Siebel tables have more than 255 columns, and Access poops out.
My preferred solution is to create a pass-through query to insert records into Oracle from Access, which I have also got to work. However, I could only do this with hard coded values in my insert statement. I would like to insert into the oracle table and use the selected fields from an Access table/query. However, I can't get it to work. This is what I've been trying.....
insert into OracleODBC.Ownername.Tablename
(
oracle_field
)
select access_field
from Ownername.AccessTablename
Is this possible?
If not, is it possible to create a csv or tab delimeted output file from Access? The export function I tested from within Access does not produce a clean delimeted file, which could be used by an Oracle import utility. By this, I mean it exports to a txt file, but it puts in extra characters to outline the values(to give it the look of a table).
Any help would be greatly appreciated....
Mike
My preferred solution is to create a pass-through query to insert records into Oracle from Access, which I have also got to work. However, I could only do this with hard coded values in my insert statement. I would like to insert into the oracle table and use the selected fields from an Access table/query. However, I can't get it to work. This is what I've been trying.....
insert into OracleODBC.Ownername.Tablename
(
oracle_field
)
select access_field
from Ownername.AccessTablename
Is this possible?
If not, is it possible to create a csv or tab delimeted output file from Access? The export function I tested from within Access does not produce a clean delimeted file, which could be used by an Oracle import utility. By this, I mean it exports to a txt file, but it puts in extra characters to outline the values(to give it the look of a table).
Any help would be greatly appreciated....
Mike