Professional Oracle Certification Interview Questions & Answers:
1. What will be the output for this query:
select 1 from dual minus select a from dual;
This will produce Error:
Expression must have same datatype as corresponding expression
A. The default internal storage of dates is in the numeric format
D. The RR date format automatically calculates the century from the SYSDATE function but allows
the user to enter the century if required
3. Explain What are transportable table spaces and the need to use them?
Transportable tablespaces are the fastest way for moving large volume of data between two oracle databases. We can use the transportable tablespaces feature to copy a set of tablespaces from one oracle database to another. Moving data using transportable tablespaces is much faster than performing either an export/import or unload/load the same data.
4. What are transportable table spaces and the need to use them?
Transportable tablespaces are the fastest way for moving large volume of data between two oracle databases. We can use the transportable tablespaces feature to copy a set of tablespaces from oneoracle database to another. Moving data using transportable tablespaces is much faster than performing either an export/import or unload/load the same data.
A. Subqueries can contain GROUP BY and ORDER BY clauses
B. Main query and subquery can get data from different tables
F. Multiple columns or expressions can be compared between the main query and subquery
B. SELECT SYSDATE - TO_DATE('01/JANUARY/2007') FROM DUAL;
C. SELECT SYSDATE - TO_DATE('01-JANUARY-2007) FROM DUAL;
B. SELECT cust_last_name,cust_credit_limit
FROM customers
ORDER BY cust_credit_limit;
C. SELECT cust_last_name,cust_credit_limit
FROM customers
ORDER BY cust_credit_limit NULLS LAST;
C. A view that is created with the subquery having the pseudo column ROWNUM keyword cannot
be updated
D. A Data Manipulation Language (DML) operation can be performed on a view that is created
with the subquery having all the NOT NULL columns of a table
C. A view that is created with the subquery having the pseudo column ROWNUM keyword cannot
be updated
D. A Data Manipulation Language (DML) operation can be performed on a view that is created
with the subquery having all the NOT NULL columns of a table
B. A columns with the UNIQUE constraint can contain NULL values
D. A constraint can be disabled even if the constraint column contains data
https://InterviewQuestionsAnswers.ORG.