Oracle Database Fundamentals and SQL
Covers SQL fundamentals, database concepts, and Oracle database applications including E-Business Suite terminology
Questions
Which of the following tools can NOT be used to catalog a database?
- Control Center
- SQL Assist
- Configuration Assistant
- Command Line Processor
Which type of key is defined on the child table to implement a referential constraint?
- Primary key
- Unique key
- Foreign key
- Composite key
Which of the following DB2 data types does NOT have a fixed length?
- INT
- CHAR
- XML
- DOUBLE
Which of the following DB2 data types can be used to store 1000MB of single-byte character data?
- BLOB
- CLOB
- DBCLOB
- GRAPHIC
Which of the following isolation levels will lock all rows scanned to build a result data set?
- Uncommitted Read
- Cursor Stability
- Read Stability
- Repeatable Read
Q1
- Enterprise reverse planning
- Enterprise revenue Planning
- Effective resource planning
- Enterprise resource planning
Q2
- It is a KeyFlex field used to store different segment values.
- It will store attribute values that will be used to track future requirements.
- knowledge Flex Field
- It is containing of one segment
Q6
- True
- False
Q4
- True
- False
Q8
- List of Values with validation.
- Storing varchar Data.
- Storing number Data.
- List of Value.
Q9
- Explicity fired.
- Not taking space in database.
- Only DML triggers are there.
- Trigger timing is mandatory.
Q10
- To insert in a view.
- To insert in a view which is created with more than one table.
- To insert into read only view.
- None.
Q5
- IN,OUT
- OUT,OUT
- IN ,IN
- OUT,IN
Q7
- Descriptive Flow Field.
- Descriptive Flex Field.
- Descriptive Flow File.
- Descriptive Flex File.
Q3
- Form->Function->User->Menu->Responsibility
- Form->Menu->Function->Responsibility->User
- Form->Function->Menu->Responsibilty->User
- Form->Function->User->Menu->Responsibilty
Q2
- It is a KeyFlex field used to store different segment values.
- It will store attribute values that will be used to track future requirements.
- knowledge Flex Field
- It is containing of one segment
Which two statements accurately describe a role? (Choose two.)
- A role can be given to a maximum of 1000 users
- A user can have access to a maximum of 10 roles
- A role can have a maximum of 100 privileges contained in it.
- Privileges are given to a role by using the CREATE ROLE statement
- A role is a named group of related privileges that can be granted to the user
- A user can have access to several roles, and several users can be assigned the same role
What is necessary for your query on an existing view to execute successfully
- The underlying tables must have data
- You need SELECT privileges on the view
- The underlying tables must be in the same schema
- You need SELECT privileges only on the underlying tables
Evaluate these two SQL statements: SELECT last_name, salary , hire_date FROM EMPLOYEES ORDER BY salary DESC; SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY 2 DESC; What is true about them
- The two statements produce identical results.
- The second statement returns a syntax error
- There is no need to specify DESC because the results are sorted in descending order by default
- The two statements can be made to produce identical results by adding a column alias for the salary column in the second SQL statement.
You would like to display the system date in the format "Monday, 01 June, 2001". Which SELECT statement should you use?
- SELECT TO_DATE(SYSDATE, 'FMDAY, DD Month, YYYY') FROM dual;
- SELECT TO_CHAR(SYSDATE, 'FMDD, DY Month, 'YYYY') FROM dual;
- SELECT TO_CHAR(SYSDATE, 'FMDay, DD Month, YYYY') FROM dual;
- SELECT TO_CHAR(SYSDATE, 'FMDY, DDD Month, YYYY') FROM dual;
- SELECT TO_DATE(SYSDATE, 'FMDY, DDD Month, YYYY') FROM dual;