-
What is cursor stability?
Cursor stability means that DB2 takes a lock on the page the cursor is accessing and releases the lock when the cursor moves to another page.
-
What techniques are used to retrieve data from more than one table in a single SQL statement?
Joins, unions and nested selects are used to retrieve data.
-
-
-
-
-
How do we know that NULL value has been selected for a nullable column
?a.Check if equal to NULLb.Use null indicator, 0 indicates nullc.Use null indicator, -1 indicates nulld.Use null indicator, -2 indicates nulle.None of the above.Use null indicator, -1 indicates null
-
-
-
What is a precompiler?
It is a DB2 facility for static SQL statements - it replaces these statements with calls to the DB2 language interface module.
-
What do the initials DDL and DML stand for and what is their meaning?
DDL is data definition language and DML is data manipulation language. DDL statements are CREATE, ALTER, TRUNCATE. DML statements are SELECT, INSERT, DELETE and UPDATE.
-
Explain an outer join?
An outer join includes rows from tables when there are no matching values in the tables.
-
-
-
-
-
-
-
-
A table called EMPLOYEE has the following columns: name, department, and phone_number. Which can limit read access to the phone_number column?
A table called EMPLOYEE has the following columns: name, department, and phone_number. Which of the following can limit read access to the phone_number column? A. Using a view to access the table B. Using a referential constraint on the table C. Revoking access from the phone_number column D. Defining a table check constraint on the table
DB2 Interview Questions
Ans