Skip to Main Content

Oracle Database Discussions

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!

How to monitor progress of table creation using CTAS method?

Veera_VNov 1 2014 — edited Nov 1 2014

How to monitor progress of table creation using CTAS method?

in gv$session_longops for corresponding SID - It shows INDEX SCAN Completed and percent is 100%.

CREATE TABLE A.TEMP_TABLE

TABLESPACE DATA

NOLOGGING

PARALLEL 4

AS SELECT * FROM B.ACTIV_REC@DBLINK as of scn 10902280771618 

WHERE STATUS IN ('PENDING');

B.ACTIV_REC table has 10 million records and TEMP_TABLE will pull 1 million records.

Thanks,

Veera

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 29 2014
Added on Nov 1 2014
13 comments
2,481 views