Which statement regarding the above command is correct?

You have three temporary tablespace groups named G1, G2, and G3 in your database.
You are creating a new temporary tablespace as follows:
CREATE TEMPORARY TABLESPACE TEMP1 TEMPFILE
‘ u1 /data /templ. dbf ‘ SIZE 10 M TABLE SPACE GROUP ‘ ‘ ; Which statement regarding the above command is correct?

You have three temporary tablespace groups named G1, G2, and G3 in your database.
You are creating a new temporary tablespace as follows:
CREATE TEMPORARY TABLESPACE TEMP1 TEMPFILE ‘ u1 /data /templ. dbf ‘ SIZE 10 M TABLE SPACE GROUP ‘ ‘ ;

Which statement regarding the above command is correct?

A.
It will create the tablespace TEMP1 in group G1.

B.
It will create the tablespace TEMP1 in group G3.

C.
It will not add the tablespace TEMP1 to any group.

D.
It will create the tablespace TEMP1 in the default group.

E.
It will throw an error with message ‘specified group is not available’.

F.
It will create a new group with a system-generated name and add the tablespace TEMP1 to it.

Explanation:
Note: The answer C is not exact, because the command not only “not add the tablespace TEMP1 to any group”, but it will delete the TEMPORARY tablespace from the his group, if it exists.
Specify an empty string (‘ ‘) will remove tablespace from the tablespace_group_name tablespace group.



Leave a Reply 1

Your email address will not be published. Required fields are marked *