DBA Hub

📋Steps in this guide1/1

Move aud$ table to new tablespace

-- Moving aud$ table to new tablespace AUDIT_DATA

oracle configurationintermediate
by OracleDba
13 views
1

Move aud$ table to new tablespace

-- Moving aud$ table to new tablespace AUDIT_DATA BEGIN DBMS_AUDIT_MGMT.SET_AUDIT_TRAIL_LOCATION(audit_trail_type => DBMS_AUDIT_MGMT.AUDIT_TRAIL_AUD_STD, audit_trail_location_value => 'AUDIT_DATA'); END; / -- Query to view new tablespace

Code/Command (click line numbers to comment):

1
2
select owner,segment_name,segment_type,tablespace_name,bytes/1024/1024 from
dba_segments where segment_name='AUD$';

Comments (0)

Please to add comments

No comments yet. Be the first to comment!