databases Online Quiz - 74
Description: databases Online Quiz - 74 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: databases |
Which is a major problem with SQL
Which of the following is an important feature of relational databases and SQL
Which of the following database design features is most important to SQL performance?
Which of the following is a characteristic of a sequence?
Which of the following deletion rules on CREATE TABLE will allow parent table rows to be deleted if a dependent row exists?
Which of the following CANNOT be used to restrict specific values from being inserted into a column in a particular table?
While attempting to connect to a database stored on an iSeries server from a Windows client, the following message was displayed: SQL1013N The database alias name or database name "TEST_DB" could not be found. Which of the following actions can be used to help determine why this message was displayed?
When a client using the SERVER_ENCRYPT authentication type connects to a server using the SERVER authentication type, what happens?
The following SQL statements were executed in sequence: CREATE DISTINCT TYPE salary AS decimal(7,2) WITH COMPARISONS; CREATE TABLE staffsalary(empid INT, empsalary salary); INSERT INTO staffsalary VALUES (10, 50000), (20, 50000.00); UPDATE staffsalary SET empsalary = 60000 WHERE salary(50000) = empsalary; What is the current content of the staffsalary table?
Which of the following provides a logical grouping of database objects?
Which of the following objects contains control structures that are considered the bound form of SQL statements
Which of the following commands is used to retrieve database names from the local catalog for DRDA host databases on System i and System z?
Which of the following are types of routine objects?
What is the maximum size that can be specified when creating an XML column in a DB2 table?
Given the following ALTER SEQUENCE statement: ALTER SEQUENCE myseq RESTART WITH 0 INCREMENT BY 1 NO MAXVALUE CACHE 5 ORDER Assuming that the sequence had reached a value of 100 prior to the RESTART, which of the following is true?
Within the application MY_APP the following PREVIOUS VALUE expression references the sequence MY_SEQ: PREVIOUS VALUE FOR my_seq After which of the following events will the most recently generated value of MY_SEQ persist so that it can be returned to the active MY_APP application?
Which of the following describes the objects of a DB2 database and their relationships?