Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Data from DB-Link in a temporary table not working

782530Jul 20 2010 — edited Jul 26 2010
Tried to query a table from a DB-Link but some columns are CLOBS, so it doesnt like it.

Created temporary tables in APEX, linking them to the remote table using this method -
CREATE GLOBAL TEMPORARY TABLE localtable_name
ON COMMIT PRESERVE ROWS AS
SELECT * FROM remotetable_name@DB-LINK
I insert data using this method -
insert into  localtable_name Select * from remotetablename@DB-LINK;
but yet it shows no data in the table and no data when i run a application page with a report on it.

Any ideas as to what im doing wrong?

Thanks in advance
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 23 2010
Added on Jul 20 2010
14 comments
2,519 views