-
-
What is cold backup? What are the elements of it?
Cold backup is taking backup of all physical files after normal shutdown of database. We need to take. - All Data files. - All Control files. - All on-line redo log files. - The init.ora file (Optional)
-
-
What is the functionality of SYSTEM table space ?
To manage the database level transactions such as modifications of the data dictionary table that record information about the free space usage.
-
How does Space allocation table place within a block ?
Each block contains entries as followsFixed block headerVariable block headerRow Header,row date (multiple rows may exists)PCTEREE (% of free space for row updation in future)
-
What is use of Rollback Segments In Database ?
They allow the database to maintain read consistency between multiple transactions.
-
-
How to implement the multiple control files for an existing database ?
Shutdown the databaseCopy one of the existing control file to new locationEdit Config ora file by adding new control file. nameRestart the database.
-
How will you monitor the space allocation ?
By querying DBA_SEGMENT table/view.
-
-
How will you force database to use particular rollback segment ?
SET TRANSACTION USE ROLLBACK SEGMENT rbs_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.
-
What is the difference between Row Changing and Row Migration ?
Migration and Changing are two distinctly different types of problems that can exist when a row is too large to fit into a single data block.Row Changing:: Row changing occurs when a row is too large to fit into a single empty data block. When this occurs, Oracle will spread the row across as many blocks as are needed. Changing the row from from one block to the next.Row Migration:: Row migration occurs...
-
Oracle Shared pool
What is meant by Shared pool fragmentation.
Oracle Memory Management Interview Questions
Ans