Wednesday, May 28, 2014

20 TOP Oracle Developer Interview Questions and Answers pdf

Most frequently Asked Oracle Developer Interview Questions and Answers for freshers and experienced pdf free download

1. When can Hash Cluster used?
Hash clusters are better choice when a table is often queried with equality queries. For such queries the specified cluster key value is hashed. The resulting hash key value points directly to the area on disk that stores the specified rows.

2. Explain Database Link?
A database link is a named object that describes a path from one database to another.

3. What are the types of Database Links?
Private Database Link, Public Database Link & Network Database Link.

4. What is Private Database Link?
Private database link is created on behalf of a specific user. A private database link can be used only when the owner of the link specifies a global object name in a SQL statement or in the definition of the owner's views or procedures.

5. What is Public Database Link?
Public database link is created for the special user group PUBLIC. A public database link can be used when any user in the associated database specifies a global object name in a SQL statement or object definition.

6. What is Network Database link?
Network database link is created and managed by a network domain service. A
network database link can be used when any user of any database in the network specifies a global object name in a SQL statement or object definition.

7. What is Data Block?
ORACLE databases data is stored in data blocks. One data block corresponds to a specific number of bytes of physical database space on disk.

8. How to define Data Block size?
A data block size is specified for each ORACLE database when the database is
created. A database users and allocated free database space in ORACLE datablocks. Block size is specified in INIT.ORA file and cannt be changed latter.

9. What are the components of Physical database structure of Oracle Database?
ORACLE database is comprised of three types of files. One or more Data files, two are more Redo Log files, and one or more Control files.

10. What are the components of Logical database structure of ORACLE database?
Tablespaces and the Databases Schema Objects.

11. What is Tablespace?
A database is divided into Logical Storage Unit called tablespaces. A tablespace is used to grouped related logical structures together.

12. What is SYSTEM tablespace and When is it Created?
Every ORACLE database contains a tablespace named SYSTEM, which is automatically created when the database is created. The SYSTEM tablespace always contains the data dictionary tables for the entire database.

13. Explain the relationship among Database, Tablespace and Data file?
Each databases logically divided into one or more tablespaces One or more data files are explicitly created for each tablespace.

14. What is schema?
A schema is collection of database objects of a User.

15. What are Schema Objects?
Schema objects are the logical structures that directly refer to the database's data.
Schema objects include tables, views, sequences, synonyms, indexes, clusters, database triggers, procedures, functions packages and database links.

16. Can a Tablespace hold objects from different Schemes?
Yes.

17. Explain Table?
A table is the basic unit of data storage in an ORACLE database. The tables of a database hold all of the user accessible data. Table data is stored in rows and columns.

18. Explain View?
A view is a virtual table. Every view has a Query attached to it. (The Query is a SELECT statement that identifies the columns and rows of the table(s) the view uses.)

19. Explain Can a View based on another View?
Yes.

20. Explain Do View contain Data?
Views do not contain or store data.

More Oracle Developer Interview Questions : Click Here
More Oracle Developer Multiple Choice Questions: Click Here

No comments: