To update an SQL view, the DBMS must be able to associate the column(s) to be updated with: a particular column in a particular underlying table. None of these a particular column in a particular row. a particular row in a particular underlying table. TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a stored program that is attached to a table or a view. trigger None of these embedded SELECT statement pseudofile TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is NOT a type of SQL constraint? ALTERNATE KEY FOREIGN KEY UNIQUE PRIMARY KEY TRUE ANSWER : ? YOUR ANSWER : ?
The SQL CHECK constraint is fully defined by the SQL-92 standard, and is consistently implemented by all DBMS vendors. True False TRUE ANSWER : ? YOUR ANSWER : ?
If any required (NOT NULL) columns are missing from the view, the view cannot be used for inserting new data. False True TRUE ANSWER : ? YOUR ANSWER : ?
The SQL MAKE TABLE command is used to construct tables, define columns, define column constraints and create relationships. False True TRUE ANSWER : ? YOUR ANSWER : ?
Common types of SQL CHECK constraints include range checks and limiting columns values. True False TRUE ANSWER : ? YOUR ANSWER : ?
Views can be used to show the results of computed columns. False True TRUE ANSWER : ? YOUR ANSWER : ?
A ________ is a program that performs some common action on database data and that is stored in the database. stored procedure trigger None of these pseudofile TRUE ANSWER : ? YOUR ANSWER : ?