-
-
What is a logical backup?
Logical backup involves reading a set of database records and writing them into a file. Export utility is used for taking backup and Import utility is used to recover from backup.
-
-
-
-
-
-
-
-
-
How will you force database to use particular rollback segment
Answered by: Lachi on 2005-06-08 07:28:04For perticular transaction Alter system set rollback segment 'name'; For database, we can set in pfile. Rollback_segment='name'
-
-
-
-
-
-
-
-
How will you swap objects into a different table space for an existing database ?
Export the user Perform import using the command imp system/manager file=export.dmp indexfile=newrite.sql. This will create all definitions into newfile.sql. Drop necessary objects. Run the script newfile.sql after altering the tablespaces. Import from the backup for the necessary objects.
-
How will you monitor the space allocation ?
By querying DBA_SEGMENT table/view.
Oracle Memory Management Interview Questions
Ans