Oracle and ADABAS Database Fundamentals
Covers Oracle database features including SQL, PL/SQL, data types, and functions, plus ADABAS database architecture and access methods, with some DB2 tools
Questions
Which of the following tool can be used to schedule work for DB2?
- Task Center
- Command Center
- Health Center
- Control Center
If you use the CREATE DATABASE statement on an existing database, all data in the datafiles will be lost
- True
- False
In Oracle, BLOBs have full transactional support
- True
- False
It is a good practice to use ROWID as a table's primary key
- True
- False
ALL scalar functions in Oracle return null when given a null argument.
- True
- False
Within a single SQL statement, Oracle will increment the sequence only twice for each row.
- True
- False
Oracle DATE columns always contain the date but not the time fields
- True
- False
You may use two consecutive minus signs in arithmetic expressions to indicate the subtraction of a negative value
- True
- False
Analytic functions compute an aggregate value based on a group of rows and return a single row for each group.
- True
- False
Analytic functions compute an aggregate value based on a group of rows and return a single row for each group.
- True
- False
The result of concatenating two character strings is always a VARCHAR2 character string.
- True
- False
You use comments in a SQL statement to pass hints to the Oracle optimizer
- True
- False
ADABAS is a powerful and a flexible database management system. It derives its name from :
- Adjusting DAta BAse System
- Adaptable DAta BAse System
- Altering DAta BAse System
- Amending DAta BAse System
ADABAS has built its architecture on :
- Inverted List Model
- Relational Model
- Hierarchical Model
- Object Oriented Model
MPM is expanded as
- Multi Processing Mode
- Mega Processing Monitor
- Multi Processing Monitor
- Mega Processing Mode
Each record present in the ADABAS file is uniquely identified by :
- RABN
- ISN
- FIN
- MIN
When you want to locate a particular record in the adabas file and if you have value of the full key use :
- READ
- FIND
- GET
- PUT
Which Oracle access method is the fastest way for Oracle to retrieve a single row?
- Primary key access
- Access via unique index
- Table access by ROWID
- Full table scan
A database trigger does not apply to data loaded before the definition of the trigger
- True
- False
Declare fvar number := null; svar number := 5 Begin goto <<>> if fvar is null then <<>> svar := svar + 5 end if;end;
- Error
- 10
- 5
- None of the above