I created a table like this
CREATE TABLE pull_dtl
(
source_schema VARCHAR2(4000),
source_tablename VARCHAR2(4000),
db_link VARCHAR2(4000),
dest_schema VARCHAR2(4000),
dest_tablename VARCHAR2(4000),
dest_tablespace VARCHAR2(4000)
)
How do I make it “no logging” and I need to “compress” it?
Thanks
To enable
NOLOGGING, run the following querySee Table Compression Enhancements in Oracle Database for compression options.