by issuing "alter tablespace begin backup;" what happens to
tablespace?

Answers were Sorted based on User's Feedback



by issuing "alter tablespace begin backup;" what happens to tablespace?..

Answer / kittu

by issuing above statement it freezes tablespace it won't
allow single transaction to datafile. by this time redologs are generated & excessive redologs also

Is This Answer Correct ?    7 Yes 3 No

by issuing "alter tablespace begin backup;" what happens to tablespace?..

Answer / ravindra

When alter tablespace begin backup?

Ans:Oracle will write all changes to the datafile by rising
checkpoint and freezes the datafile header with latest SCN.
and backup will take upto latest SCN and transactions are
updating to datafiles also changes will be generate many
archivelogs because all changed transactions information
written to Redologs.

Is This Answer Correct ?    1 Yes 0 No

by issuing "alter tablespace begin backup;" what happens to tablespace?..

Answer / naveen

when u place a tablespace/database in backup (restore) mode(usually it's better idea to place only one tablespace at a time, as more logging is written, it should be done during a low activity period. And for the same reason, it is better to place the tablespaces one after one instead of putting all the tablespaces in backup mode)
when u alter the tablespace in begin backup mode - The datafile header is frozen so that whenever tablespace/datafile is copied, it reflects the checkpointSCN that was at the beginning of the backup. Then, when the copy will be restored, Oracle knows that it needs to start recovery at that SCN to apply the archived redo logs.This is to avoid the header inconsistency issue.That means that any further checkpoints do not update the datafile header SCN (but they do update a 'backup' SCN).
Each first modification to a block in buffer cache will write the full block into the redolog (in addition to the default behaviour that writes only the change vector).
At checkpoint the datafile header SCN is not updated - when updating a block, the first time it is updated since it came in the buffer cache,the whole before image of the block is recorded in redo- direct path writes do not go through the buffer cache, but they always write full blocks and then full block is written to redo log (if not in nologging)
This is to avoid the fractured block issue. There may be a fractured block in the copy, but it will be overwritten during the recovery with the full block image.

Is This Answer Correct ?    1 Yes 0 No

by issuing "alter tablespace begin backup;" what happens to tablespace?..

Answer / suman

alter tablespace begin backup; it means we can take the
backup of tablespace in hotbackup begin backup mode will be
start

Is This Answer Correct ?    2 Yes 3 No

by issuing "alter tablespace begin backup;" what happens to tablespace?..

Answer / kittu

by issuing above statement it freezes tablespace it won't
allow single transaction to datafile

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More DB Administration Interview Questions

How do you open a cluster administrator? : sql server DBA

0 Answers  


What is replication? : sql server DBA

0 Answers  


what is the role of dip user in our database?

0 Answers  


What the different topologies in which replication can be configured? : sql server DBA

0 Answers  


Give the two types of tables involved in producing a star schema and the type of data theyhold.

2 Answers  






Name three advisory statistics you can collect.

1 Answers  


I lost one datafile i dont have backup how can you recover that???

2 Answers   HP,


What authentication modes does sql server support? : sql server DBA

0 Answers  


Which dictionary tables and/or views would you look at to diagnose a locking issue?

2 Answers  


You create a private database link <link name> and upon connection, fails with: ORA-2085: <Link name> connects to <fully qualified remote db name>. What is the problem? How would you go about resolving this error?

0 Answers  


I have my backup RMAN script called "backup_rman.sh". I am on the target database. My catalog username/password is rman/rman. My catalog db is called rman. How would you run this shell script from the o/s such that it would run as a background process?

1 Answers  


. I have my backup RMAN script called "backup_rman.sh". I am on the target database. My catalog username/password is rman/rman. My catalog db is called rman. How would you run this shell script from the o/s such that it would run as a background process?

0 Answers  


Categories