This quiz focuses on Oracle software, assessing knowledge on database structures, integrity constraints, and PL\/SQL syntax. It is designed to validate understanding of Oracle database management, essential for IT professionals and students in database courses.
True
False
Rate this question:
Increasing the size of one of the Datafiles
Adding one or more Datafiles
Cannot be increased
None of the above
Rate this question:
Ocuupies data storage space
To protect some of the columns of a table from other users
To hide complexity of a query
To hide complexity of a calculations
Rate this question:
True
False
Rate this question:
True
False
Rate this question:
Redolog file
Data file
Control file
All of the above
Rate this question:
Bool boolean;
Deptname dept.dname%type;
NUM1, NUM2 number;
Date1 date := sysdate ;
Rate this question:
ORG_CHART EMPLOYEE_ID MANAGER_ID JOB_ID ------------------ ----------- ---------- ---------- Kochhar 101 100 AD_VP King 100 116 AD_PRES De Haan 102 100 AD_VP
ORG_CHART EMPLOYEE_ID MANAGER_ID JOB_ID ------------------ ----------- ---------- ---------- King 100 116 AD_PRES Kochhar 101 100 AD_VP De Haan 102 100 AD_VP
ORG_CHART EMPLOYEE_ID MANAGER_ID JOB_ID ------------------ ----------- ---------- ---------- De Haan 102 100 AD_VP King 100 116 AD_PRES Kochhar 101 100 AD_VP
ORG_CHART EMPLOYEE_ID MANAGER_ID JOB_ID ------------------ ----------- ---------- ---------- Kochhar 101 100 AD_VP De Haan 102 100 AD_VP King 100 116 AD_PRES
Rate this question:
CREATE [OR REPLACE] [FORCE|NOFORCE] VIEW view [(alias)[,alias]…)] AS subquery [WITH CHECK OPTION [CONSTRAINT constraint]] [WITH READ ONLY [CONSTRAINT constraint]];
CREATE [OR REPLACE] [FORCE|NOFORCE] VIEW [(alias)[,alias]…)] AS subquery [WITH CHECK OPTION [CONSTRAINT constraint]] [WITH READ ONLY [CONSTRAINT constraint]];
CREATE [OR REPLACE] [FORCE|NOFORCE] VIEW view [(alias)[,alias]…)] AS subquery [WITH CHECK OPTION [CONSTRAINT constraint]] [WITH READ ONLY [CONSTRAINT constraint]]
CREATE [OR REPLACE] [FORCE|NOFORCE] VIEW [(alias)[,alias]…)] AS subquery [WITH CHECK OPTION [CONSTRAINT constraint]] [WITH READ ONLY [CONSTRAINT constraint]]
Rate this question:
Insert into ddd values(to_date('2003/05/03 21:02:44'));
Insert into ddd d values(to_date('2003/05/03 21:02:44', 'yyyy/mm/dd hh24:mi:ss'));
Insert into ddd values(to_date('2003/05/03 21:02:44', 'yyyy/mm/dd hh:mi:ss'));
None is correct
Rate this question:
Because an integrity constraint is automatically checked while data is inserted into or updated in a table while a stored procedure has to be specifically invoked
Because the stored procedure occupies more space in the database than a integrity constraint definition
Because a stored procedure creates more network traffic than a integrity constraint definition
All
Rate this question:
Select ? into
Update
Create
Delete
Rate this question:
Cursor is a named Private SQL area
Cursor is used for retrieving multiple rows
SQL uses implicit Cursors to retrieve rows
Cursor holds temporary results
Rate this question:
This would create a new table called suppliers that included all columns from the companies table, but no data from the companies table.
This would create a new table called companies that included all columns from the suppliers table, with data from the suppliers table.
This would create a new table called companies that included all columns from the suppliers table, but no data from the suppliers table.
Error
Rate this question:
True
False
Rate this question:
SUPPLIER_ID SUPPLIER_NAME 10567
SUPPLIER_ID SUPPLIER_NAME 10565 10567
No rows selected
Error
Rate this question:
1
Error
No privileges
A must grant some more privileges
Rate this question:
INSERT ALL INTO suppliers (supplier_id, supplier_name) VALUES (1000, 'IBM') INTO suppliers (supplier_id, supplier_name) VALUES (2000, 'Microsoft') INTO customers (customer_id, customer_name, city) VALUES (999999, 'Anderson Construction', 'New York');
INSERT ALL INTO suppliers (supplier_id, supplier_name) VALUES (1000, 'IBM') INTO suppliers (supplier_id, supplier_name) VALUES (2000, 'Microsoft') INTO customers (customer_id, customer_name, city) VALUES (999999, 'Anderson Construction', 'New York') SELECT * FROM dual;
Both
None
Rate this question:
Library
Stored procedure & Function
Collection of Subprograms
None of the above
Rate this question:
Quiz Review Timeline (Updated): Mar 17, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.