Link to home
Start Free TrialLog in
Avatar of hussainkhan22
hussainkhan22Flag for United States of America

asked on

Oracle tablespace status

Hey what is the command or procedure to check if tablespace are in begin backup mode for hotbackup. Please let me know thanks
Avatar of woolmilkporc
woolmilkporc
Flag of Germany image

select * from v$backup;

wmp
select file#, status from v$backup;

if the status is active then the tablespace in backup mode

select tablespace_name from dba_data_files
      where file_id = file_no_from_above_Query;
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Are you manually backing up or are you using RMAN?  RMAN uses different views for backup status.
ASKER CERTIFIED SOLUTION
Avatar of OP_Zaharin
OP_Zaharin
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial