ALTER TABLE tablename MODIFY PARTITION 2016dec NOLOGGING;
Alter table table_name nologging;
select table_name, logging from dba_tables where table_name like 'test%';
select partition_name,logging from DBA_TAB_PARTITIONS where table_name='tablename';
ALTER TABLE tablename MODIFY LOB (USER_DATA) (NOCACHE NOLOGGING);
To enable force logging on db
ALTER DATABASE force logging;
ALTER TABLESPACE users FORCE LOGGING;
To disable:
ALTER DATABASE no force logging;
ALTER TABLESPACE users NO FORCE LOGGING;
Alter table table_name nologging;
select table_name, logging from dba_tables where table_name like 'test%';
select partition_name,logging from DBA_TAB_PARTITIONS where table_name='tablename';
ALTER TABLE tablename MODIFY LOB (USER_DATA) (NOCACHE NOLOGGING);
To enable force logging on db
ALTER DATABASE force logging;
ALTER TABLESPACE users FORCE LOGGING;
To disable:
ALTER DATABASE no force logging;
ALTER TABLESPACE users NO FORCE LOGGING;
No comments:
Post a Comment