Deck 9: Advanced SQL and PlSQL Topics

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

A)2
B)5
C)99
D)Unlimited
سؤال
Variables declared in a package can only be used within the package.
سؤال
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
سؤال
What is the maximum number of columns that can be contained in a composite index?

A)2
B)4
C)16
D)32
سؤال
You can cause a trigger to be executed only if a certain condition is true by adding the WHEN clause to the trigger header.
سؤال
Every package specification must have a matching package body.
سؤال
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
سؤال
Database triggers is another name for Form Triggers.
سؤال
What type of data structure does Oracle use to store indexes?

A)Linked List
B)Array
C)B-Tree
D)Red-Black Tree
سؤال
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
سؤال
When creating a package specification,components must be declared in the following order: public variables,cursors,functions and procedures.
سؤال
What is the purpose of a database table index?

A)Keep track of changes
B)Audit trail
C)Speed up queries
D)Modularize code
سؤال
A PL/SQL library can only contain stored procedures,not functions.
سؤال
A PL/SQL package contains exactly the same functionality as a library,but it resides on the database server.
سؤال
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.
سؤال
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
سؤال
The Database Objects node in Forms Builder is a top-level node within the Object Navigator,and is not associated with a specific form.
سؤال
What naming convention should be followed for indexes?

A)The Oracle Naming Convention
B)tablename_fieldname
C)fieldname_tablename
D)in_fieldname_tablename
سؤال
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
سؤال
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
سؤال
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
سؤال
What keyword follows the parameter declaration list in a procedure header?

A)AND
B)IS
C)BEGIN
D)END
سؤال
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
سؤال
Which of the following program units must return exactly one value?

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

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

A)IN
B)OUT
C)IN OUT
D)OUT IN
سؤال
What type of program unit may be shared with other users?

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

A)function
B)procedure
C)trigger
D)package
سؤال
What follows the parameter declaration list in a function?

A)IS
B)RETURN
C)BEGIN
D)END
سؤال
What keyword indicates that a procedure definition is finished?

A)DONE
B)END
C)DROP
D)FINISH
سؤال
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.
سؤال
What keyword indicates the start of the body of a stored procedure?

A)BEGIN
B)WHEN
C)IS
D)AND
سؤال
How many input parameters can a function have?

A)0
B)1
C)10
D)unlimited
سؤال
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
سؤال
What is the extension for a PL/SQL library design file?

A)psl
B)lib
C)pll
D)plx
سؤال
What is the last command in a function body?

A)DONE
B)RETURN
C)EXIT
D)QUIT
سؤال
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 ... )
سؤال
What is the extension for a PL/SQL library executable file?

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

A)package
B)trigger
C)library
D)function
سؤال
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
سؤال
A(n)____________________ is a program unit that can receive multiple input parameters and return multiple output values or return no output values.
سؤال
What is the keyword that indicates the start of a trigger body?

A)EXECUTE
B)WHEN
C)START
D)BEGIN
سؤال
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
سؤال
____________________ PL/SQL program units are program units that other PL/SQL programs can reference,and that other database users can execute.
سؤال
The first field of a composite index is the ____________________ field.
سؤال
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
سؤال
To remove an index,use the ____________________ INDEX command.
سؤال
What is another name for a package header?

A)package body
B)package definition
C)package specification
D)package declaration
سؤال
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
سؤال
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
سؤال
To find information on the indexes in your own schema use the ____________________ data dictionary view.
سؤال
Which of the following is a legal command when used in a trigger body?

A)COMMIT
B)SAVEPOINT
C)SELECT
D)ROLLBACK
سؤال
The ____________________ field of every database table specifies the internal location of the record in the database.
سؤال
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.
سؤال
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.
سؤال
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
سؤال
____________________ program units are stored in the database as database objects and execute on the database server.
سؤال
A(n)____________________ is a database index table that contains multiple sorted columns that the DBMS can use for identifying the row location.
سؤال
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 Deck
1/100
auto play flashcards
العب
simple tutorial
ملء الشاشة (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 (:=).
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
5
In a procedure declaration,the DEFINE keyword follows the parameter list.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
6
If an index does not improve query performance,it should be dropped.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
8
The IN OUT parameter mode is the default if parameter mode is not specified.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
9
A library is the only client-side stored program unit.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
10
To view index names for indexes in your own schema,use the command "SELECT index_name FROM all_indexes".
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
11
To call a stored procedure from a PL/SQL program,do not use the EXECUTE keyword.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
13
It is more efficient to create an index when the table is empty,before adding any data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
14
Any stored procedures and functions developed in Forms Builder can never be used by other users.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
15
If applications frequently insert or modify table data it is better not to use an index.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
16
A program unit cannot be used in a larger program.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
17
Index names should using the naming convention tablename_fieldname.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
18
A PL/SQL stored program unit can run on either the database server or on the client workstation.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
19
A database table cannot have more than five indexes.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
20
A composite index is used for a query that uses logical operators in the search condition.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
21
Database triggers are often used to gather audit information.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
22
What is the maximum number of indexes a table can have?

A)2
B)5
C)99
D)Unlimited
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
23
Variables declared in a package can only be used within the package.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
27
Every package specification must have a matching package body.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
29
Database triggers is another name for Form Triggers.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
32
When creating a package specification,components must be declared in the following order: public variables,cursors,functions and procedures.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
34
A PL/SQL library can only contain stored procedures,not functions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
35
A PL/SQL package contains exactly the same functionality as a library,but it resides on the database server.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
43
What keyword follows the parameter declaration list in a procedure header?

A)AND
B)IS
C)BEGIN
D)END
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
45
Which of the following program units must return exactly one value?

A)package
B)function
C)procedure
D)library
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
48
What type of program unit may be shared with other users?

A)declared
B)public
C)stored
D)defined
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
50
What follows the parameter declaration list in a function?

A)IS
B)RETURN
C)BEGIN
D)END
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
51
What keyword indicates that a procedure definition is finished?

A)DONE
B)END
C)DROP
D)FINISH
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
53
What keyword indicates the start of the body of a stored procedure?

A)BEGIN
B)WHEN
C)IS
D)AND
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
54
How many input parameters can a function have?

A)0
B)1
C)10
D)unlimited
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
56
What is the extension for a PL/SQL library design file?

A)psl
B)lib
C)pll
D)plx
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
57
What is the last command in a function body?

A)DONE
B)RETURN
C)EXIT
D)QUIT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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 ... )
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
59
What is the extension for a PL/SQL library executable file?

A)psx
B)lib
C)pll
D)plx
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
60
Which of the following program units executes on the client workstation?

A)package
B)trigger
C)library
D)function
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
63
What is the keyword that indicates the start of a trigger body?

A)EXECUTE
B)WHEN
C)START
D)BEGIN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
66
The first field of a composite index is the ____________________ field.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
68
To remove an index,use the ____________________ INDEX command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
69
What is another name for a package header?

A)package body
B)package definition
C)package specification
D)package declaration
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
72
To find information on the indexes in your own schema use the ____________________ data dictionary view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
74
The ____________________ field of every database table specifies the internal location of the record in the database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
78
____________________ program units are stored in the database as database objects and execute on the database server.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.