Top 50 Oracle Memory Management Interview Questions You Must Prepare 27.Jul.2024

Q1. What Is Sga? How It Is Different From Ver 6.0 And Ver 7.0?

The System Global Area in a Oracle database is the area in memory to facilitates the trfer of information between users. It holds the most recently requested structural information between users. It holds the most recently requested structural information about the database. The structure is Database buffers, Dictionary cache, Redo Log Buffer and Shared SQL pool (ver 7.0 only) area.

Q2. How Will You Monitor Rollback Segment Status?

By using dictionary views called v$rollstat,dba_rollback_segs.

Q3. Why Query Fails Sometimes?

Due to syntax errors.

Q4. What Is Redo Log Buffer?

Changes made to entries are written to the on-line redo log files. So that they can be used in roll forward operations during database recoveries. Before writing them into the redo log files, they will first brought to redo log buffers in SGA and LGWR will write into files frequently.

LOG_BUFFER parameter will decide the size.

Q5. What Is The Use Of Show Option In Imp Command?

A flag to indicate whether file content should be displayed or not.

Q6. What Is The Use Of Analyse ( Ver 7) Option In Exp Command?

A flag to indicate whether statistical information about the exported objects should be written to export dump file.

Q7. What Is Dictionary Cache?

Dictionary cache is information about the database objects stored in a data dictionary table.

Q8. How Will You Estimate The Space Required By A Non-clustered Tables?

  • Calculate the total header size
  • Calculate the available dataspace per data block
  • Calculate the combined column lengths of the average row
  • Calculate the total average row size.
  • Calculate the average number rows that can fit in a block
  • Calculate the number of blocks and bytes required for the table.

After arriving the calculation, add 10 % additional space to calculate the initial extent size for a working table.

Q9. What Is The Use Of Indexes Option In Exp Command?

A flag to indicate whether indexes on tables will be exported.

Q10. How To Implement The Multiple Control Files For An Existing Database?

  1. Edit init.ora file set control_files parameter with multiple location
  2. shutdown immediate
  3. copy control file to multiple locations & confirm from init.ora contol_files parameter
  4. start the database.
  5. run this query for changes confirmation - select name from v$controlfile;

Q11. What Is The Use Of Grant Option In Exp Command?

A flag to indicate whether grants on databse objects will be exported or not. Value is 'Y' or 'N'.

Q12. What Is The Use Of Grant Option In Imp Command?

A flag to indicate whether grants on database objects will be imported.

Q13. What Is The Use Of File Option In Imp Command?

The name of the file from which import should be performed.

Q14. What Is The Use Of Record Length Option In Exp Command?

Record length in bytes.

Q15. What Is The Use Of Inctype Option In Exp Command?

Type export should be performed COMPLETE,CUMULATIVE,INCREMENTAL

Q16. What Are The Different Kind Of Export Backups?

  • Full back - Complete database
  • Incremental - Only affected tables from last incremental date/full backup date.
  • Cumulative backup - Only affected table from the last cumulative date/full backup date.

Q17. What Is The Use Of Full Option In Exp Command?

A flag to indicate whether full databse export should be performed.

Q18. What Is Meant By Recursive Hints?

Number of times processes repeatedly query the dictionary table is called recursive hints. It is due to the data dictionary cache is too small. By increasing the SHARED_POOL_SIZE parameter we can optimize the size of Data Dictionary Cache.

Q19. What Is The Use Of Rows Option In Imp Command?

A flag to indicate whether rows should be imported. If this is set to 'N' then only DDL for database objects will be executed.

Q20. It Is Possible To Use Raw Devices As Data Files And What Are The Advantages Over File System Files?

Yes. It is possible to use raw devices as data files.

The advantages over file system files:

  • I/O will be improved because Oracle is bye-passing the kernnel which writing into disk.
  • Disk Corruption will be very less.

Q21. What Is A Data Segment?

Data segment are the physical areas within a database block in which the data associated with tables and clusters are stored.

Q22. What Is The Functionality Of System Table Space?

To manage the database level tractions such as modifications of the data dictionary table that record information about the free space usage.

Q23. What Is A Control File?

The Control File is a small binary file necessary for the database to start and operate successfully. Each Control file is associated with only one Oracle database. Before a database is opened, the control file is read to determine if the database is in a valid state to USE.

The Control file is not accessible, the database does not function properly.

Q24. What Is Hit Ratio?

Hit Ratio is the ratio of shared SQL and PL/SQL items found in the Library Cache versus physical storage.It can also be defined in a mathematical expression as 1 - ((physical reads) / (db block gets + consistent reads)).

Q25. 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.

Q26. Which Parameter In Storage Clause Will Reduce Number Of Rows Per Block?

  • PCTFREE parameter,
  • Row size also reduces no of rows per block.

Q27. What Is The Use Of Record Option In Exp Command?

For Incremental exports, the flag indirects whether a record will be stores data dictionary tables recording the export.

Q28. How Redo Logs Can Be Achieved?

LGWR process writes all change vectors from the redo log buffer to online redo log file sequentially.

Q29. What Is Use Of Log (ver 7) Option In Exp Command?

The name of the file which log of the export will be written.

Q30. What Is Redo Log File Mirroring?

Multiplexing Redo log file called Mirroring. ( Keeping multiple copies in different disks)

Q31. What Is A Shared Sql Pool?

The data dictionary cache is stored in an area in SGA called the Shared SQL Pool. This will allow sharing of parsed SQL statements among concurrent users.

Q32. How Can We Plan Storage For Very Large Tables?

  • Limit the number of extents in the table
  • Separate Table from its indexes.
  • Allocate Sufficient temporary storage.

Q33. What Is The Use Of Tables Option In Exp Command?

List of tables should be exported.

Q34. List The Factors That Can Affect The Accuracy Of The Estimations?

The space used traction entries and a deleted record does not become free immediately after completion due to delayed cleanout.

Trailing nulls and length bytes are not stored. Inserts of, updates to and deletes of rows as well as columns larger than a single datablock, can cause fragmentation and chained row pieces.

Q35. What Is Mean By Program Global Area (pga)?

It is area in memory that is used by a Single Oracle User Process.

Q36. 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.

Q37. How The Space Utilization Takes Place Within Rollback Segments?

By correctly fitting optimal size.

Q38. What Is The Significance Of Having Storage Clause?

We can plan the storage for a table as how much initial extents are required, how much can be extended next, how much % should leave free for managing row updations etc.

Q39. What Is Use Of Rollback Segments In Oracle Database?

When a user updated a particular table (for example 100 rows) the old value will be retained in the roll back segments(Oracle 8) and now it is Undo segment (oracle 9i). If the user issue a rollback command the old value will be taken from the rollback segment(that too if undo_retention parameter set properly in the parameter file).

Q40. What Is Advantage Of Having Disk Shadowing / Mirroring?

Shadow set of disks save as a backup in the event of disk failure. In most Operating System if any disk failure occurs it automatically switchover to place of failed disk.

Improved performance because most OS support volume shadowing can direct file I/O request to use the shadow set of files instead of the main set of files. This reduces I/O load on the main set of disks.

Q41. What Is The Optimal Parameter?

To avoid the space wastage we use OPTIMAL parameter.

Q42. 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)

Q43. What Is Hot Backup And How It Can Be Taken?

Taking backup of archive log files when database is open. For this the ARCHIVELOG mode should be enabled. The following files need to be backed up. All data files. All Archive log, redo log files. All control files.

Q44. What Is The Use Of Parfile Option In Exp Command?

Name of the parameter file to be passed for export.

Q45. What Are Disadvantages Of Having Raw Devices?

We should depend on export/import utility for backup/recovery (fully reliable) The tar command cannot be used for physical file backup, instead we can use dd command which is less flexible and has limited recoveries.

Q46. How Does Space Allocation Table Place Within A Block?

Each block contains entries as follows:

  • Fixed block header
  • Variable block header
  • Row Header,row date (multiple rows may exists)
  • PCTEREE (% of free space for row updation in future).

Q47. How Can We Organize The Tablespaces In Oracle Database To Have Maximum Performance?

Store data in tablespaces to avoid disk contension.system tablespace-recursive callsuserdata-users objectsindex tablespace-for indexesrollback segmnets-undo tablespace or manual rollback segmentsplace application specific data in respective tablespaces.Place all these tablespaces in saperate disks.Try to implement raid-0 (striping) for better performance.

Q48. What Are The Factors Causing The Re Parsing Of Sql Statements In Sga?

  • Due to insufficient Shared SQL pool size.
  • Monitor the ratio of the reloads takes place while executing SQL statements. If the ratio is greater than 1 then increase the SHARED_POOL_SIZE.

Q49. What Is Meant By Free Extent?

A free extent is a collection of continuous free blocks in tablespace. When a segment is dropped its extents are reallocated and are marked as free.

Q50. What Is A Rollback Segment Entry?

When ever changes happened to the database previous change will be there in the rollback segment.