Deck 9: Advanced SQL and PlSQL Topics

Full screen (f)
exit full mode
Question
consultant_skill_skill_id_certification is a valid index name.
Use Space or
up arrow
down arrow
to flip the card.
Question
A composite index can contain up to 16 columns.
Question
Other database users may execute stored program units.
Question
To call a function from a SQL*Plus session assign the return value of the function to a variable using the assignment operator (:=).
Question
In a procedure declaration,the DEFINE keyword follows the parameter list.
Question
If an index does not improve query performance,it should be dropped.
Question
To display a summary listing of compile errors generated by the last program unit that was compiled,you execute the SHOW ERRORS command.
Question
The IN OUT parameter mode is the default if parameter mode is not specified.
Question
A library is the only client-side stored program unit.
Question
To view index names for indexes in your own schema,use the command "SELECT index_name FROM all_indexes".
Question
To call a stored procedure from a PL/SQL program,do not use the EXECUTE keyword.
Question
If you are passing the value of a named variable to a stored program unit,the variable name must be the same as the corresponding variable name in the program unit parameter declaration list.
Question
It is more efficient to create an index when the table is empty,before adding any data.
Question
Any stored procedures and functions developed in Forms Builder can never be used by other users.
Question
If applications frequently insert or modify table data it is better not to use an index.
Question
A program unit cannot be used in a larger program.
Question
Index names should using the naming convention tablename_fieldname.
Question
A PL/SQL stored program unit can run on either the database server or on the client workstation.
Question
A database table cannot have more than five indexes.
Question
A composite index is used for a query that uses logical operators in the search condition.
Question
Database triggers are often used to gather audit information.
Question
What is the maximum number of indexes a table can have?

A)2
B)5
C)99
D)Unlimited
Question
Variables declared in a package can only be used within the package.
Question
When is the best time to create an index?

A)When the table is empty
B)When the table is half-full
C)When all rows have been added
D)It doesn't matter - any time is fine
Question
What is the maximum number of columns that can be contained in a composite index?

A)2
B)4
C)16
D)32
Question
You can cause a trigger to be executed only if a certain condition is true by adding the WHEN clause to the trigger header.
Question
Every package specification must have a matching package body.
Question
What is the name of the table field that stores information about the physical location of a row?

A)ROWNUM
B)ROWID
C)ROWLOC
D)ROWPOS
Question
Database triggers is another name for Form Triggers.
Question
What type of data structure does Oracle use to store indexes?

A)Linked List
B)Array
C)B-Tree
D)Red-Black Tree
Question
What type of database column is indexed automatically?

A)Primary key column
B)Columns with data type NUMBER
C)Foreign key columns
D)Unique key columns
Question
When creating a package specification,components must be declared in the following order: public variables,cursors,functions and procedures.
Question
What is the purpose of a database table index?

A)Keep track of changes
B)Audit trail
C)Speed up queries
D)Modularize code
Question
A PL/SQL library can only contain stored procedures,not functions.
Question
A PL/SQL package contains exactly the same functionality as a library,but it resides on the database server.
Question
If you modify a library in Forms Builder,you must reattach the library to the forms that use it before the changes will take effect.
Question
The Database Objects node ____.

A)is a top-level node within the Object Navigator
B)is not associated with a specific form
C)contains child nodes that represent every database user
D)All of the above
Question
The Database Objects node in Forms Builder is a top-level node within the Object Navigator,and is not associated with a specific form.
Question
What naming convention should be followed for indexes?

A)The Oracle Naming Convention
B)tablename_fieldname
C)fieldname_tablename
D)in_fieldname_tablename
Question
Which of the following is a reason not to create an index?

A)The field contains a large number of null values
B)The field contains a wide range of values
C)The table contains a large number of records
D)Most queries retrieve more than 2% to 4% of the table records
Question
The ____ command is used to display error information if a procedure does not compile.

A)VIEW ERRORS
B)ERRORS
C)SEND ERRORS
D)SHOW ERRORS
Question
The ____ keyword is used to call a stored procedure in SQL*Plus.

A)CALL
B)EXECUTE
C)RUN
D)No keyword is needed - just the procedure name
Question
What keyword follows the parameter declaration list in a procedure header?

A)AND
B)IS
C)BEGIN
D)END
Question
To save a program unit as a stored program unit in the database,you use the ____ node in the Object Navigator

A)PL/SQL
B)Database Objects
C)Procedures
D)Functions
Question
Which of the following program units must return exactly one value?

A)package
B)function
C)procedure
D)library
Question
How many records does it take for a table to be considered large?

A)100
B)1000
C)10,000
D)100,000
Question
The ____ parameter mode indicates that the parameter will not be modified by the procedure.

A)IN
B)OUT
C)IN OUT
D)OUT IN
Question
What type of program unit may be shared with other users?

A)declared
B)public
C)stored
D)defined
Question
Which of the following stored program units can return zero,one,or many values?

A)function
B)procedure
C)trigger
D)package
Question
What follows the parameter declaration list in a function?

A)IS
B)RETURN
C)BEGIN
D)END
Question
What keyword indicates that a procedure definition is finished?

A)DONE
B)END
C)DROP
D)FINISH
Question
How do you test a program unit in Forms Builder?

A)Create a form for the input fields and attach a form trigger to a button.
B)Use the auto test feature.
C)Write a test harness PL/SQL program.
D)Create a new tester component and associate the program unit with it.
Question
What keyword indicates the start of the body of a stored procedure?

A)BEGIN
B)WHEN
C)IS
D)AND
Question
How many input parameters can a function have?

A)0
B)1
C)10
D)unlimited
Question
The ____ parameter mode should be used to return a value from a procedure when the input value to the procedure will not be set.

A)IN
B)OUT
C)IN OUT
D)OUT IN
Question
What is the extension for a PL/SQL library design file?

A)psl
B)lib
C)pll
D)plx
Question
What is the last command in a function body?

A)DONE
B)RETURN
C)EXIT
D)QUIT
Question
How do you call a function from a PL/SQL program?

A)EXECUTE function_name (parameters... )
B)CALL function_name (parameters ... )
C)variable := function_name (parameters ... )
D)RUN function_name (parameters ... )
Question
What is the extension for a PL/SQL library executable file?

A)psx
B)lib
C)pll
D)plx
Question
Which of the following program units executes on the client workstation?

A)package
B)trigger
C)library
D)function
Question
How do you build a library in Forms Builder?

A)Create a new library,add existing program units.
B)Create a new library,then write new program units
C)Create a new library,then locate program units in the database and copy and paste them into the library
D)Create a new library,then ask a DBA to add existing program units from the DBMS
Question
A(n)____________________ is a program unit that can receive multiple input parameters and return multiple output values or return no output values.
Question
What is the keyword that indicates the start of a trigger body?

A)EXECUTE
B)WHEN
C)START
D)BEGIN
Question
How do you temporarily disable a trigger called my_trigger?

A)DROP TRIGGER my_trigger
B)DISABLE TRIGGER my_trigger
C)ALTER TRIGGER my_trigger DISABLE
D)ALTER my_trigger DISABLE
Question
____________________ PL/SQL program units are program units that other PL/SQL programs can reference,and that other database users can execute.
Question
The first field of a composite index is the ____________________ field.
Question
What is the correct order for items in a package specification?

A)variables,cursors,functions,procedures
B)cursors,functions,variables,procedures
C)functions,procedures,variables,cursors
D)any order is acceptable
Question
To remove an index,use the ____________________ INDEX command.
Question
What is another name for a package header?

A)package body
B)package definition
C)package specification
D)package declaration
Question
How do you reference the previous value of a field from within a trigger?

A):OLD.fieldname
B)OLD:fieldname
C):PREV.fieldname
D)PREV:fieldname
Question
What type of trigger fires only once per row?

A)Statement-level trigger
B)Row-level trigger
C)Column-level trigger
D)Field-level trigger
Question
To find information on the indexes in your own schema use the ____________________ data dictionary view.
Question
Which of the following is a legal command when used in a trigger body?

A)COMMIT
B)SAVEPOINT
C)SELECT
D)ROLLBACK
Question
The ____________________ field of every database table specifies the internal location of the record in the database.
Question
A database table ____________________ is a distinct database table that contains data values,along with a corresponding column that specifies the physical locations of the records that contain those data values.
Question
A(n)____________________ PL/SQL program is one which is submitted to the PL/SQL interpreter and run,but that does not interact with other program units.
Question
How do you specify that a trigger should only fire if the value of the column AMOUNT is less than 100?

A)IF amount < 100
B)WHEN amount < 100
C)ONLY IF amount < 100
D)ONLY WHEN amount < 100
Question
____________________ program units are stored in the database as database objects and execute on the database server.
Question
A(n)____________________ is a database index table that contains multiple sorted columns that the DBMS can use for identifying the row location.
Question
When using Forms Builder to create a package,what is the first step in the process?

A)Create a new Package
B)Create a new Package Spec
C)Create a new Package Header
D)Create a new Package Definition
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 9: Advanced SQL and PlSQL Topics
1
consultant_skill_skill_id_certification is a valid index name.
False
2
A composite index can contain up to 16 columns.
True
3
Other database users may execute stored program units.
True
4
To call a function from a SQL*Plus session assign the return value of the function to a variable using the assignment operator (:=).
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
5
In a procedure declaration,the DEFINE keyword follows the parameter list.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
6
If an index does not improve query performance,it should be dropped.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
7
To display a summary listing of compile errors generated by the last program unit that was compiled,you execute the SHOW ERRORS command.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
8
The IN OUT parameter mode is the default if parameter mode is not specified.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
9
A library is the only client-side stored program unit.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
10
To view index names for indexes in your own schema,use the command "SELECT index_name FROM all_indexes".
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
11
To call a stored procedure from a PL/SQL program,do not use the EXECUTE keyword.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
12
If you are passing the value of a named variable to a stored program unit,the variable name must be the same as the corresponding variable name in the program unit parameter declaration list.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
13
It is more efficient to create an index when the table is empty,before adding any data.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
14
Any stored procedures and functions developed in Forms Builder can never be used by other users.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
15
If applications frequently insert or modify table data it is better not to use an index.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
16
A program unit cannot be used in a larger program.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
17
Index names should using the naming convention tablename_fieldname.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
18
A PL/SQL stored program unit can run on either the database server or on the client workstation.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
19
A database table cannot have more than five indexes.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
20
A composite index is used for a query that uses logical operators in the search condition.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
21
Database triggers are often used to gather audit information.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
22
What is the maximum number of indexes a table can have?

A)2
B)5
C)99
D)Unlimited
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
23
Variables declared in a package can only be used within the package.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
24
When is the best time to create an index?

A)When the table is empty
B)When the table is half-full
C)When all rows have been added
D)It doesn't matter - any time is fine
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
25
What is the maximum number of columns that can be contained in a composite index?

A)2
B)4
C)16
D)32
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
26
You can cause a trigger to be executed only if a certain condition is true by adding the WHEN clause to the trigger header.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
27
Every package specification must have a matching package body.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
28
What is the name of the table field that stores information about the physical location of a row?

A)ROWNUM
B)ROWID
C)ROWLOC
D)ROWPOS
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
29
Database triggers is another name for Form Triggers.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
30
What type of data structure does Oracle use to store indexes?

A)Linked List
B)Array
C)B-Tree
D)Red-Black Tree
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
31
What type of database column is indexed automatically?

A)Primary key column
B)Columns with data type NUMBER
C)Foreign key columns
D)Unique key columns
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
32
When creating a package specification,components must be declared in the following order: public variables,cursors,functions and procedures.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
33
What is the purpose of a database table index?

A)Keep track of changes
B)Audit trail
C)Speed up queries
D)Modularize code
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
34
A PL/SQL library can only contain stored procedures,not functions.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
35
A PL/SQL package contains exactly the same functionality as a library,but it resides on the database server.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
36
If you modify a library in Forms Builder,you must reattach the library to the forms that use it before the changes will take effect.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
37
The Database Objects node ____.

A)is a top-level node within the Object Navigator
B)is not associated with a specific form
C)contains child nodes that represent every database user
D)All of the above
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
38
The Database Objects node in Forms Builder is a top-level node within the Object Navigator,and is not associated with a specific form.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
39
What naming convention should be followed for indexes?

A)The Oracle Naming Convention
B)tablename_fieldname
C)fieldname_tablename
D)in_fieldname_tablename
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
40
Which of the following is a reason not to create an index?

A)The field contains a large number of null values
B)The field contains a wide range of values
C)The table contains a large number of records
D)Most queries retrieve more than 2% to 4% of the table records
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
41
The ____ command is used to display error information if a procedure does not compile.

A)VIEW ERRORS
B)ERRORS
C)SEND ERRORS
D)SHOW ERRORS
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
42
The ____ keyword is used to call a stored procedure in SQL*Plus.

A)CALL
B)EXECUTE
C)RUN
D)No keyword is needed - just the procedure name
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
43
What keyword follows the parameter declaration list in a procedure header?

A)AND
B)IS
C)BEGIN
D)END
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
44
To save a program unit as a stored program unit in the database,you use the ____ node in the Object Navigator

A)PL/SQL
B)Database Objects
C)Procedures
D)Functions
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
45
Which of the following program units must return exactly one value?

A)package
B)function
C)procedure
D)library
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
46
How many records does it take for a table to be considered large?

A)100
B)1000
C)10,000
D)100,000
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
47
The ____ parameter mode indicates that the parameter will not be modified by the procedure.

A)IN
B)OUT
C)IN OUT
D)OUT IN
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
48
What type of program unit may be shared with other users?

A)declared
B)public
C)stored
D)defined
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
49
Which of the following stored program units can return zero,one,or many values?

A)function
B)procedure
C)trigger
D)package
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
50
What follows the parameter declaration list in a function?

A)IS
B)RETURN
C)BEGIN
D)END
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
51
What keyword indicates that a procedure definition is finished?

A)DONE
B)END
C)DROP
D)FINISH
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
52
How do you test a program unit in Forms Builder?

A)Create a form for the input fields and attach a form trigger to a button.
B)Use the auto test feature.
C)Write a test harness PL/SQL program.
D)Create a new tester component and associate the program unit with it.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
53
What keyword indicates the start of the body of a stored procedure?

A)BEGIN
B)WHEN
C)IS
D)AND
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
54
How many input parameters can a function have?

A)0
B)1
C)10
D)unlimited
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
55
The ____ parameter mode should be used to return a value from a procedure when the input value to the procedure will not be set.

A)IN
B)OUT
C)IN OUT
D)OUT IN
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
56
What is the extension for a PL/SQL library design file?

A)psl
B)lib
C)pll
D)plx
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
57
What is the last command in a function body?

A)DONE
B)RETURN
C)EXIT
D)QUIT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
58
How do you call a function from a PL/SQL program?

A)EXECUTE function_name (parameters... )
B)CALL function_name (parameters ... )
C)variable := function_name (parameters ... )
D)RUN function_name (parameters ... )
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
59
What is the extension for a PL/SQL library executable file?

A)psx
B)lib
C)pll
D)plx
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
60
Which of the following program units executes on the client workstation?

A)package
B)trigger
C)library
D)function
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
61
How do you build a library in Forms Builder?

A)Create a new library,add existing program units.
B)Create a new library,then write new program units
C)Create a new library,then locate program units in the database and copy and paste them into the library
D)Create a new library,then ask a DBA to add existing program units from the DBMS
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
62
A(n)____________________ is a program unit that can receive multiple input parameters and return multiple output values or return no output values.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
63
What is the keyword that indicates the start of a trigger body?

A)EXECUTE
B)WHEN
C)START
D)BEGIN
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
64
How do you temporarily disable a trigger called my_trigger?

A)DROP TRIGGER my_trigger
B)DISABLE TRIGGER my_trigger
C)ALTER TRIGGER my_trigger DISABLE
D)ALTER my_trigger DISABLE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
65
____________________ PL/SQL program units are program units that other PL/SQL programs can reference,and that other database users can execute.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
66
The first field of a composite index is the ____________________ field.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
67
What is the correct order for items in a package specification?

A)variables,cursors,functions,procedures
B)cursors,functions,variables,procedures
C)functions,procedures,variables,cursors
D)any order is acceptable
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
68
To remove an index,use the ____________________ INDEX command.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
69
What is another name for a package header?

A)package body
B)package definition
C)package specification
D)package declaration
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
70
How do you reference the previous value of a field from within a trigger?

A):OLD.fieldname
B)OLD:fieldname
C):PREV.fieldname
D)PREV:fieldname
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
71
What type of trigger fires only once per row?

A)Statement-level trigger
B)Row-level trigger
C)Column-level trigger
D)Field-level trigger
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
72
To find information on the indexes in your own schema use the ____________________ data dictionary view.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
73
Which of the following is a legal command when used in a trigger body?

A)COMMIT
B)SAVEPOINT
C)SELECT
D)ROLLBACK
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
74
The ____________________ field of every database table specifies the internal location of the record in the database.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
75
A database table ____________________ is a distinct database table that contains data values,along with a corresponding column that specifies the physical locations of the records that contain those data values.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
76
A(n)____________________ PL/SQL program is one which is submitted to the PL/SQL interpreter and run,but that does not interact with other program units.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
77
How do you specify that a trigger should only fire if the value of the column AMOUNT is less than 100?

A)IF amount < 100
B)WHEN amount < 100
C)ONLY IF amount < 100
D)ONLY WHEN amount < 100
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
78
____________________ program units are stored in the database as database objects and execute on the database server.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
79
A(n)____________________ is a database index table that contains multiple sorted columns that the DBMS can use for identifying the row location.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
80
When using Forms Builder to create a package,what is the first step in the process?

A)Create a new Package
B)Create a new Package Spec
C)Create a new Package Header
D)Create a new Package Definition
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 100 flashcards in this deck.