Explain Materialized Views?: Oracle DBA Interview Questions and Answers PDF
Explain Materialized Views?: Oracle DBA Interview Questions and Answers PDF
Question: 1
These are generally used in warehouse application to avoid commonly used data analysis by
storing analyzed data. Unlike normal views, they actually store data and need to be refreshed.
Question: 2
It is used when you do not know all parts of the SQL while writing the SQL.
Question: 3
What is a cursor?
Cursor is a handle or pointer to memory context area allocated for the execution of SQL
statement.
Question: 4
There are different types of analytical functions available in Oracle, which are given as follows.
Ranking functions, such as rank, dense_rank, row_number, ntile, percent_rank and cume_dist.
Windows functions, such as sum, max and avg.
Question: 5
It is helpful when you need to have different code based on certain conditions.
Question: 6
Although there is no restriction, a procedure is generally used to carry out an operation while a
function is used to apply a function on one or many columns to return a value.
Question: 7
If the parameter is set to TRUE, then the database link must be created with the same name as
remote database.
If the parameter is set to FALSE, then the database link can be created with a different name.
Oracle lets you create database link with different name even when the GLOBAL_NAMES is set
to TRUE but the link cannot be used.
You will receive the error ORA-02085, if you try to use a database link with different name
when GLOBAL_NAMES is set to TRUE.
Question: 8
Question: 9
In case of index organized tables, the entire row is stored with the index value and not just the
rowid.
Question: 10