top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Oracle: workaround for snapshots on tables with LONG columns?

0 votes
285 views
Oracle: workaround for snapshots on tables with LONG columns?
posted Jun 26, 2015 by Kunal Kapoor

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

ou can use the SQL*Plus COPY command instead of snapshots if you need to copy
LONG and LONG RAW variables from one location to another. Eg:

COPY TO SCOTT/TIGER@REMOTE -
CREATE IMAGE_TABLE USING -
SELECT IMAGE_NO, IMAGE -
FROM IMAGES;

Note: If you run Oracle8, convert your LONGs to LOBs, as it can be replicated

answer Jun 30, 2015 by Arun Gowda
...