:: Home

  login:        
  passwords:  

Windows Presentation Foundation Interview Questions/FAQs

Interview Questions and answer of Technical Questions

9. Oracle Technical Questions (part 2)

    9.1 How would you determine the time zone under which a database was operating?
    9.2 Explain the use of setting GLOBAL_NAMES equal to TRUE.
    9.3 What command would you use to encrypt a PL/SQL application?
    9.4 Explain the difference between a FUNCTION, PROCEDURE and PACKAGE.
    9.5 Explain the use of table functions.
    9.6 Name three advisory statistics you can collect.
    9.7 Where in the Oracle directory tree structure are audit traces placed?

9.1 How would you determine the time zone under which a database was operating?

select DBTIMEZONE from dual;


9.2 Explain the use of setting GLOBAL_NAMES equal to TRUE.

Setting GLOBAL_NAMES dictates how you might connect to a database. This variable is either TRUE or FALSE and if it is set to TRUE it enforces database links to have the same name as the remote database to which they are linking.


9.3 What command would you use to encrypt a PL/SQL application?

WRAP


9.4 Explain the difference between a FUNCTION, PROCEDURE and PACKAGE.

A function and procedure are the same in that they are intended to be a collection of PL/SQL code that carries a single task. While a procedure does not have to return any values to the calling application, a function will return a single value. A package on the other hand is a collection of functions and procedures that are grouped together based on their commonality to a business function or application.


9.5 Explain the use of table functions.

Table functions are designed to return a set of rows through PL/SQL logic but are intended to be used as a normal table or view in a SQL statement. They are also used to pipeline information in an ETL process.


9.6 Name three advisory statistics you can collect.

Buffer Cache Advice, Segment Level Statistics, & Timed Statistics


9.7 Where in the Oracle directory tree structure are audit traces placed?

In unix $ORACLE_HOME/rdbms/audit, in Windows the event viewer

Copyright 2007, Megasolutions Ltd