I am going to a Oracle database from an Access database and want to append records to a table in the Access database.
I need about 40 fields but here is an example of just three.
INSERT INTO
ADMIN200.SDW_LD_DATA
(SDW_LD_DATA.ADMIN_BY_CAO, SDW_LD_DATA.PRIME_CAGE, SDW_LD_DATA.PIIN)
VALUES
(SELECT CONTRACTS.ADMIN_BY_CAO, CONTRACTS.PRIME_CAGE, CONTRACTS.PIIN
FROM OLAP_OWNER.CONTRACTS
WHERE CONTRACTS.ADMIN_BY_CAO ='YL')
With this format I get a missing expression error.
Can any body help?
Thanks,
Terry
I need about 40 fields but here is an example of just three.
INSERT INTO
ADMIN200.SDW_LD_DATA
(SDW_LD_DATA.ADMIN_BY_CAO, SDW_LD_DATA.PRIME_CAGE, SDW_LD_DATA.PIIN)
VALUES
(SELECT CONTRACTS.ADMIN_BY_CAO, CONTRACTS.PRIME_CAGE, CONTRACTS.PIIN
FROM OLAP_OWNER.CONTRACTS
WHERE CONTRACTS.ADMIN_BY_CAO ='YL')
With this format I get a missing expression error.
Can any body help?
Thanks,
Terry