Question: The following SQL statement was used to create a table: CREATE TABLE TABLE 1 0 ( PROJECT _ NAME CHAR ( 2 0 ) ,

The following SQL statement was used to create a table:
CREATE TABLE TABLE10(
PROJECT_NAME CHAR(20),
PROJECT_LOCATION CHAR(80))
IN DB10.TS10;
TS10 is a universal table space. The table has been in use for quite a while and contains many rows. The DDL_MATERIALIZATION subsystem parameter has been set to ALWAYS_IMMEDIATE.
Which of the following statements would be considered a pending change?
Question 19Select one:
A.
ALTER TABLE PROJECT
ADD PROJECT_COST
NOT NULL WITH DEFAULT 0;
B.
ALTER TABLE PROJECT
ALTER COLUMN PROJECT_NAME
SET TYPE CHAR(40);
C.
ALTER TABLE PROJECT
DROP COLUMN PROJECT_LOCATION;
D.
ALTER TABLE PROJECT
ADD WITH RESTRICT ON DROP;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!