You are on page 1of 39

DB2 EXAM 513 QUESTIONS & ANSWERS

QUESTION 1
Given the following DB2DIAG.LOG entry:
"Crash Recovery is needed."
Which of the following is the most likely cause for this entry?

A. A LOAD failed
B. A restore failed
C. A hardware problem
D. A rollforward is required

g
Answer: C

or
QUESTION 2
The following is seen in the DB2DIAG.LOG file:
1999-03-23-15.04.06.397000 Instance:DB2 Node:000
PID:147(db2syscs.exe) TID:203 Appid:0915106D.0805.980323200328
buffer_pool_services sqlbStartPools Probe:0
Database:SAMPLE
Starting the database.
L.
Which of the following connection types is indicated by this entry?
TA
A. Local attachment
B. Local connection
C. Remote attachment
D. Remote connection

Answer: D
R

QUESTION 3
Which of the following is required to IMPORT data into a table?
PO

A. SYSCTRL authority
B. LOAD authority on the table
C. ALTER privilege on the table
D. IMPORT authority on the table
E. INSERT privilege on the table

Answer: E
IT

QUESTION 4
Which of the following utilities affects the state of a table space?

A. LOAD
B. REORG
C. IMPORT

1
000-513

D. RUNSTATS

Answer: A

QUESTION 5
Which of the following is NOT a characteristic of creating a table using the IXF import file
format?

A. Summary tables cannot be the target of the import command


B. Imported data is the same as that exported from another table

g
C. Foreign key definitions are not preserved when creating tables
D. Referential constraints are not preserved when creating tables
E. With SELECT * on export, primary key definitions are not preserved

or
Answer: E

QUESTION 6
6. Which of the following DB2 utilities can create a table and place data into the table?

A. LOAD
B. EXPORT
C. IMPORT
L.
TA
D. UPLOAD
E. FORCEIN

Answer: C

QUESTION 7
Which of the following authorizations is NOT sufficient to back up a database?
R

A. DBADM
B. SYSADM
PO

C. SYSCTRL
D. SYSMAINT

Answer: A

QUESTION 8
Which of the following is required in order to run the EXPORT utility?
IT

A. ATTACH
B. CONNECT
C. LOCK TABLE
D. FORCE USERS
E. QUIESCE TABLESPACE

2
000-513

Answer: B

QUESTION 9
Which of the following CANNOT be exported?

A. Hierarchies
B. Large objects
C. Stored procedures
D. Tables with identity columns

g
Answer: C

or
QUESTION 10
Which of the following statements will gather only the index statistics for the table
user1.table1?

A. Runstats on table user1.table1 indexes all


B. Runstats on table user1.table1 on indexes all
C. Runstats on table user1.table1 for indexes all
D. Runstats on table user1.table1 and indexes all L.
TA
Answer: C

QUESTION 11
When appending data to a table using the LOAD utility, which of the following is NOT
allowed for index recreation?

A. Load rebuilds all indexes automatically during the load


R

B. Load extends only those indexes affected by the new loaded data
C. Recreation postponed; DB2 later extends indexes affected by new data
D. Recreation is postponed until first index access or database restart
PO

Answer: C

QUESTION 12
Which two of the following are possible with LOAD?

A. Triggers fired
IT

B. Gathers statistics
C. Constraints validated
D. Copy of loaded data is saved
E. Works across DRDA with DB2 CONNECT

Answer: A, E

3
000-513

QUESTION 13
Which of the following authorities is NOT automatically granted to PUBLIC when a
database is created?

A. BINDADD
B. CONNECT
C. CREATETAB
8
D. IMPLICIT_SCHEMA
E. CREATE_NOT_FENCED

g
Answer: E

or
QUESTION 14
If a user accidentally drops a table and commits work, which of the following recovers the
dropped table?

A. Once committed, the dropped table cannot be recovered

tablespace, and rollforward


L.
B. If ALTER TABLESPACE .... DROPPED TABLE RECOVERY ON enabled, restore

C. If ALTER TABLESPACE .... DROPPED TABLE RECOVERY ON not enabled, first


alter tablespace and then restore database and rollforward
TA
D. If ALTER TABLESPACE .... DROPPED TABLE RECOVERY ON not enabled, first
alter tablespace and then restore tablespace and rollforward

Answer: B

QUESTION 15
Which of the following index recreation parameters is used to minimize performance
R

degradation, during index recreation, for users connected to the database?

A. "User" in the DBM CFG


PO

B. "Access" in the DB CFG


C. "Restart" in the DB CFG
D. "System" in the DBM CFG

Answer: C

QUESTION 16
IT

Which of the following is supported when LOGRETAIN is ON and USEREXIT is ON?

A. Use of primary logs but not secondary logs


B. Rollforward recovery but not crash recovery
C. Crash recovery but not rollforward recovery
D. Both crash recovery and rollforward recovery
E. Point in time recovery but not crash recovery

4
000-513

Answer: D

QUESTION 17
Which of the following is required for a database restore?

A. Exclusive use of the database


B. Exclusive use of the instance
C. Exclusive use of the table being restored
D. Exclusive use of the table space being restored

g
Answer: A

or
QUESTION 18
Which of the following commands will give the minimum point in time recovery for table
spaces of a recoverable database?

A. get dbm cfg


B. list minimum point in time
C. list tablespaces show detail
D. get db cfg for <database-alias> L.
TA
Answer: C

QUESTION 19
DB2 is running with circular logging, has not been manually activated, and has put a table
space in OFFLINE state from NORMAL state because some containers are temporarily not
accessible for the table space. Once the containers are accessible, which of the following
actions can make the table space accessible?
R

A. Use the ACTIVATE DATABASE command


B. Change from circular logging to log retain
PO

C. Use the "ALTER TABLESPACE .... SET OFLINE" statement


D. Disconnect all users and then have the users reconnect
E. Do nothing as the table space state will change automatically

Answer: C

QUESTION 20
IT

Which two of the following set the default qualifier to "BOB"?

A. SET ID 'BOB'
B. SET SCHEMA 'BOB'
C. SET CURRENT ID='BOB'
D. SET CURRENT USER='BOB'
E. SET CURRENT SQLID 'BOB'

5
000-513

Answer: B, C

QUESTION 21
How many indexes will be created by the following statement?
Create table mytab
{
Col1 int not null primary key,
Col2 char(64),
Col3 char(32),

g
Col4 int not null,
constraint c4 unique (Col4,Col1)
}

or
A. 0
B. 1
C. 2
D. 3
E. 4

Answer: C L.
TA
QUESTION 22
Which of the following indicates when a newly created table space will become available for
use?

A. After restarting the instance


B. As soon as the database is reactivated
C. As soon as the creation statement completes
R

D. After the database is detached and re-attached


E. When everyone disconnects and reconnects to the database
PO

Answer: C

QUESTION 23
Given the following DDL statements:
CREATE TABLE PERSON OF PERSON_T (REF IS OID USER GENERATED)
CREATE TABLE EMP OF EMP_T UNDER PERSON INHERIT SELECT PRIVILEGES
CREATE TABLE STUDENT OF STUDENT_T UNDER PERSON INHERIT SELECT
IT

PRIVILEGES
CREATE TABLE STAFF (COL1 INT, COL2 INT)
Which two of the following statements will drop all tables associated with the hierarchy?

A. DROP TABLE person


B. DROP TABLE HIERARCHY person
C. drop each table in the hierarchy

6
000-513

D. DROP HIERARCHY TABLE person_hierarchy


E. DROP TABLE HIERARCHY person_hierarchy

Answer: A, D

QUESTION 24
Which of the following table space characteristics for a System Managed (SMS) table space
can be modified with the ALTER TABLESPACE statement?

A. extent size

g
B. prefetch size
C. number of containers
D. size of an existing container

or
E. location of an existing container

Answer: B

QUESTION 25
Given the statements:

L.
CREATE REGULAR TABLESPACE new_tbsa MANAGED BY DATABASE
USING (FILE 'filea' 1000, FILE 'fileb' 1000)
EXTENTSIZE 16 PREFETCHSIZE 4
TA
CREATE LONG TABLESPACE new_tbsb MANAGED BY DATABASE
USING (FILE 'filec' 1000, FILE 'filed' 1000)
EXTENTSIZE 16 PREFETCHSIZE 4
CREATE TABLE Tab1 (col1 CLOB (40k), col2 CHAR (30))
IN new_tbsa LONG IN new_tbsb
Records are inserted into tab1.
In which of the following locations is the data placed?
R

A. Col1 and col2 data will go into new_tbsa


B. Col1 and col2 data will go into new_tbsb
PO

C. Col1 data will go into new_tbsa and col2 data will go into new_tbsb
D. Col1 data will go into new_tbsb and col2 data will go into new_tbsa

Answer: D

QUESTION 26
Given the command:
IT

CREATE DATABASE inventory


CATALOG TABLESPACE MANAGED BY SYSTEM USING ('path1','path2')
EXTENTSIZE 16 PREFETCHSIZE 32
USER TABLESPACE MANAGED BY SYSTEM USING ('patha')
TEMPORARY TABLESPACE MANAGED BY DATABASE USING (FILE 'filea'
1000)
WITH "EXTENTSIZE 8"

7
000-513

Which of the following bufferpools is the catalog table space associated?

A. IBMBPPATH1
B. IBMCATALOGBP
C. IBMDEFAULTBP
D. IBMTEMPSPCBP
E. IBMUSERSPCBP

Answer: C

g
QUESTION 27
Given the command:
CREATE TABLESPACE tbs1 MANAGED BY SYSTEM USING ('path1')

or
EXTENTSIZE 16 PREFETCHSIZE 32
Which of the following increases the amount of storage available for the table space tbs1?

A. Free up disk space on path1


B. Increase the EXTENTSIZE value
C. Increase the PREFETCHSIZE value
D. Add container to tbs1 with ALTER TABLESPACE
E. Extend container size with ALTER TABLESPACE L.
TA
Answer: A

QUESTION 28
Given the following:
System has twenty 10GB disk devices for the database.
Table is named: mytab
Mytab data portion: 100GB
R

One tablespace exists: mydatats


If the table was created as follows:
CREATE TABLE mytab (...) IN mydatats
PO

Given that containers CANNOT span devices, which of the following number of containers
must be used in order to provide optimal access to the table mytab?

A. 5
B. 10
C. 15
D. 20
IT

Answer: D

QUESTION 29
Which of the following options will defer when DB2 must allocate additional pages to an
index in order to store inserted data?

8
000-513

A. CLUSTER
B. PCTFREE
C. MINPCTUSED
D. SPACIFICATION ONLY

Answer: B

QUESTION 30
Given the DB2DIAG.LOG entry:
1999-05-25-06.34.11.102000 Instance: D132 Node:000

g
PID:103 (db2sysc.exe) TID:210 Appid:none
Common_communication sglcctcpconnmgr Probe:50
DIA3200E

or
The SVCENAME parameter in the database manager configuration file is not configured.
Update the SVCENAME parameter using the service name defined in the TCP/IP services
file.
Which of the following indicates when the above message will be generated?

A. db2stop
B. db2start
C. attach to an instance
D. connect to a database
L.
TA
Answer: B

QUESTION 31
Which of the following CANNOT help to uniquely identify rows?

A. Using an Identify column


R

B. Creating a foreign key on the table


15
C. Defining primary key columns as not null
PO

D. Creating a trigger to autoincrement the primary key value for insert statements

Answer: B

QUESTION 32
The DDL can be seen for a view by:
IT

A. Using Visual Explain to see the view


B. Selecting against the view in the Command Center
C. Clicking Sample Contents of SYSCAT.VIEWS from Control Center
D. Clicking on the SHOW DDL tab in the Views object in the Control Center

Answer: C

9
000-513

QUESTION 33
Which of the following is TRUE when joining tables with DB2 Relational Connect function:

A. DB2's cost-based optimizer is turned off for Federated database requests


B. The DB2 optimizer is not aware that all tables are not in the same DB2 instance
C. The DB2 optimizer is aware that some tables are on remote machines, but will not
perform any optimization on SQL sent to the remote machines.
D. The DB2 optimizer is aware that some tables are on remote machines, and where
appropriate will rewrite SQL before sending it to the remote machine.

g
Answer: D

QUESTION 34

or
Which of the following indexes requires each row in a table to be unique?

A. A clustered index
B. A bidirectional index
C. An index with include columns
D. An index creating using PCTFREE

Answer: C L.
TA
QUESTION 35
Which of the following privileges is granted to PUBLIC on the system catalog views when a
database is created?

A. NONE
B. SELECT
C. UPDATE
R

D. CONTROL

Answer: B
PO

QUESTION 36
Given the following DDL statements:
CREATE VIEW V1 AS SELECT COL1 FROM T1 WHERE COL1>10
CREATE VIEW V2 AS SEKECT COL1 FROM V1 WITH CHECK OPTION
CREATE VIEW V3 AS SELECT COL1 FROM V2 WHERE COL1<100
Which two of the following statements will fail?
IT

A. Insert into v1 values (5)


B. Insert into v2 values (5)
C. Insert into v3 values (5)
D. Insert into v3 values (100)
E. Insert into v3 values (200)

10
000-513

Answer: B, C

QUESTION 37
Which of the following is the default output location for DB2 scripts created in the DB2
Script Center and successfully executed in the DB2 Script Center?

A. DB2 Journal
B. System console
C. DB2 Command Window

g
D. User specified file
E. DB2 Command Line Processor

or
Answer: A

QUESTION 38
Which of the following index types will cause the rows of the table to be arranged on disk
according to the ordering of their index keys?

A. unique index
B. clustered index
C. non-unique index
L.
TA
D. index with include column

Answer: B

QUESTION 39
Given the following table definition:
CANDIDATE
R

CandidateName CHAR(20)
CandidateID INTEGER NOT NULL
Address CHAR(100)
PO

CandidatePhoto BLOB(1M)
And the following information:
Candidate Identifiers are unique
Which of the following indicates the purpose for creating a primary key on table
CANDIDATE?

A. Support creation of a table check constraint


IT

B. Support referential integrity between tables


C. Ensure duplicate candidate identifiers get entered
D. Provide free space on each index page for new data

Answer: B

11
000-513

QUESTION 40
Which of the following CANNOT be performed from the DB2 Script Center?

A. Edit a DB2 script


B. Write a DB2 script
C. Monitor a DB2 script
D. Execute a DB2 script
E. Schedule a DB2 script

Answer: C

g
QUESTION 41
Which two of the following tools will allow users to view the graphical explain snapshot for

or
particular SQL statements?

A. Journal
B. Script Center
C. Command Center
D. Control Center
E. Event Analyzer

Answer: A, E
L.
TA
QUESTION 42
If detailed statistics are gathered for a table of sufficient size (around 25 pages), which of
the following columns will be populated?

A. SYSCAT.COLDIST.VALCOUNT
B. SYSCAT.COLDIST.DISCOUNT
R

C. SYSCAT.INDEXES.CLUSTERRATIO
D. SYSCAT.INDEXES.PAGE_FETCH_PAIRS
PO

Answer: D

QUESTION 43
Given the following DB2DIAG.LOG entry:
"Crash Recovery is needed."
and the database configuration autorestart is set to off.
Which of the following is required to initiate crash recovery?
IT

A. CONNECT TO <database-alias>
B. RESTART database <database-alias>
C. RECOVER database <database-alias>
D. RESTORE database <database-alias>

Answer: B

12
000-513

QUESTION 44
Which two of the following database configuration parameters are allocated from
DBHEAP?

A. BUFFPAGE
B. LOGBUFSZ
C. SORTHEAP
D. PCKCACHESZ
E. CATALOGCACHE_SZ

g
Answer: B, C

or
QUESTION 45
Given the following Event Monitor output:
...
Lock Statistics:
...
Lock escalations: 3
X lock escalations: 2
L.
Which two of the following database configuration parameters must be updated to reduce
lock escalations?
TA
A. MAXLOCKS
B. LOCKLIST
C. DLCHKTIME
D. MMINCOMMIT
E. NUM_IOSERVERS
R

Answer: D, E

QUESTION 46
PO

Given the following users and groups with no privileges on table t1:
GroupA GroupB
user1 user4
user2 user5
user3
Which of the following commands gives all users in the above groups the ability to create a
view on table t1?
IT

A. GRANT SELECT ON TABLE t1 TO ALL


B. GRANT SELECT ON TABLE t1 TO PUBLIC
C. GRANT CREATE_VIEW ON TABLE t1 TO ALL
D. GRANT CREATE_VIEW ON TABLE t1 TO PUBLIC
E. GRANT SELECT ON TABLE t1 TO USER GroupA, GroupB

13
000-513

Answer: B

QUESTION 47
You have two instances named INST1 and INST2 on the same machine. Which command
changes the communication protocol registry variable to TCPIP for ONLY instance
INST1?

A. db2set -g DB2COMM=TCPIP
B. db2reg -g DB2COMM=TCPIP

g
C. db2init -g DB2COMM=TCPIP
D. db2set -i INST1 DB2COMM=TCPIP
E. db2reg -i INST1 DB2COMM=TCPIP

or
F. db2init -i INST1 DB2COMM=TCPIP

Answer: D

QUESTION 48
Given the following scenario:
GET SNAPSHOT FOR ALL DATABASES
Database Snapshot
Database name = SAMPLE
L.
TA
.....
Catalog cache lookups = 31
Catalog cache inserts = 71
Catalog cache overflows = 0
Catalog cache heap full = 6
Which of the following database configuration parameters should be increased to reduce
the occurrence of Catalog Cache Heap Full?
R

A. DBHEAP
B. SORTHEAP
PO

C. STMTHEAP
D. SHEAPTHRES
E. UTIL_HEAP_SZ

Answer: A

QUESTION 49
IT

Which of the following will capture embedded static and dynamic SQL explain snapshot
information for an application?

A. The EXPLSNAP YES bind option


B. The EXPLSNAP ALL bind option
C. The SET CURRENT EXPLAIN SNAPSHOT YES statement
D. The SET CURRENT EXPLAIN SNAPSHOT EXPLAIN statement

14
000-513

Answer: B

QUESTION 50
Which of the following options will defer when DB2 must allocate additional pages to an
index in order to store inserted data?
E. CLUSTER
F. PCTFREE
G. MINPCTUSED
H. SPACIFICATION ONLY

g
Answer: B

or
QUESTION 51
Which of the following tasks does the DB2 Query Patroller QueryAdministrator component
perform?

A. Accepts, analyzers, priorities, and schedules database requests and optionally notifies
users when their requests have been processed.

L.
B. Enables the user to monitor query status, view job details, cancel jobs, submit new jobs,
drop result tables, and resubmit completed jobs.
C. Allows you to determine which tables and columns have been accessed most frequently,
TA
which tables have returned the most result rows, and which jobs have been completed
within a specific time period.
D. Enables the system administrator to manage the DB2 Query Patroller system parameters,
create or delete profiles for DB2 Query Patroller users, manage nodes, result destinations,
data sources and job queues.

Answer: D
R

QUESTION 52
Given the following scenario:
PO

Assuming the DB2 instance was stopped and restarted after these commands were issued
and User2 has reattached, which of the following functional groups (switches) would User2
be monitoring in Session 2?

A. BUFFERPOOL
B. SORT, LOCK
C. BUFFERPOOL, SORT
IT

D. BUFFERPOOL, LOCK
E. BUFFERPOOL, LOCK, SORT

Answer: C

QUESTION 53
Which of the following details does the Recovery Page of the Journal display?

15
000-513

A. Backup operations
B. Restore operations
C. Backup operations and restore operations
D. Backup operations, restore operations, and load operations

Answer: D

QUESTION 54
When a variable reaches a warning or alarm threshold, an alert is generated by which of

g
the following?

A. Journal

or
B. Script Center
C. Visual Explain
D. Command Center
E. Performance Monitor

Answer: E

QUESTION 55 L.
Which of the following DB configuration parameter settings can improve the bufferpool hit
TA
ratio?

A. The log file size > 0 (LOGFILSIZ)


B. The index sort flag = YES (INDEXSOFT)
C. The catalog cache size > 0 (CATALOGCACHE_SZ)
D. The number of I/O servers > (NUM_IOSERVERS)
E. The percentage of lock list per application> 0 (MAXLOCKS)
R

Answer: D
PO

QUESTION 56
Which of the following is required to permit all users from any DB2 UDB client to connect
to the database?

A. Set trust_clntauth = Client, trust_allclnts=No.


B. Set trust_clntauth = Server, trust_allclnts=No.
C. Set trust_clntauth = Client, trust_allclnts=Yes.
IT

D. Set trust_clntauth = Server, trust_allclnts=Yes.

Answer: C

QUESTION 57
Which two of the following methods sets up connectivity from a client to a remote server
using TCPIP as the protocol?

16
000-513

A. ADD database in the Control Center


B. Add instance in the Control Center
C. Using the Client Configuration Assistant
D. ATTACH to the remote system and catalog the database
E. IMPORT access information into the database directories

Answer: A, D

QUESTION 58

g
User1 has successfully connected to the database. Which of the following levels of security
controls the access user1 has to the data?

or
A. The DB2 instance level
B. The database object level
C. The operating system level
D. The database directory level

Answer: B

QUESTION 59 L.
Given an application with the embedded static SQL statement.
TA
INSERT INTO admin.payroll (employee, salary) VALUES ("Tess King", 30000)
Which of the following privileges must be held on table admin.payroll to successfully bind
the application?

A. ALTER
B. INSERT
C. UPDATE
R

D. BINDADD
E. EXECUTE
PO

Answer: B

QUESTION 60
Which of the following actions will occur when issuing the command FORCE
APPLICATION ALL?

A. No new database connections are allowed


IT

B. Uncommitted units of work are committed


C. Uncommitted units of work are rolled back
D. Disconnect warning messages are sent to connected users

Answer: C

17
000-513

QUESTION 61
Which of the following is encrypted when using AUTHENTICATION=DCS_ENCRYPT on
the client and server?

A. data
B. userid
C. password
D. password and data
E. userid and password

g
Answer: C

QUESTION 62

or
Which of the following DB2COMM registry variables enables the configured protocols?

A. DB2COMM=TCPIP, APPC
B. DB2COMM=NETBIOS,APPC
C. DB2COMM=TCPIP,IPXSPX
D. DB2COMM=TCPIP,NETBIOS
E. DB2COMM=NETBIOS,IPXSPX

Answer: D
L.
TA
QUESTION 63
The statement:
"DROP TABLE payroll.employee" returns the following message:
SQL0551N "USER1" does not have the privilege to perform operation
"DROP" an object "PAYROLL.EMPLOYEE."
SQLSTATE=42501
R

Which of the following will correct the situation?

A. GRANT DROP AUTHORITY TO user1


PO

B. GRANT DROPIN ON SCHEMA user1 TO user1


C. GRANT DROPIN ON SCHEMA payroll TO user1
D. GRANT DROPIN ON SCHEMA employee TO user1

Answer: C

QUESTION 64
IT

Which two of the following authorities can issue a FORCE command?

A. DBADM
B. SYSADM
C. SYSCTRL
D. SYSUSER
E. SYSMAINT

18
000-513

Answer: B, C

QUESTION 65
Which of the following must be used to monitor the status of jobs built and scheduled by
DB2's Script Center?

A. The Journal
B. The Command Center
C. The Command Line Processor

g
D. The operating system's native scheduler

Answer: A

or
QUESTION 66
There is an instance on a server that clients must be able to discover. However, there is a
need to hide one of the databases within this instance? Which of the following should be
performed?

parameter to ENABLE L.
A. Set the DAS instance parameter DISCOVER to DISABLE and the DISCOVER_DB

B. Set the DAS instance parameter DISCOVER to SEARCH and the DISCOVER_DB
TA
parameter to DISABLE
C. Set the DAS instance parameter DISCOVER to SEARCH and the DISCOVER_INST
parameter to DISABLE
D. Set the DAS instance parameter DISCOVER to DISABLE and the DISCOVER_INST
parameter to ENABLE

Answer: B
R

QUESTION 67
Which of the following authorities is NOT automatically granted to PUBLIC when a
PO

database is created?
F. BINDADD
G. CONNECT
H. CREATETAB
I. IMPLICIT_SCHEMA
J. CREATE_NOT_FENCED
IT

Answer: E

QUESTION 68
Which of the following is the purpose for creating a clustering index on a table as opposed
to a non-clustering index?

A. Enforces uniqueness of key columns in the table

19
000-513

B. Provides logical ordering of rows based on key columns of table


C. Saves disk space when adding rows to tables with an index defined
D. Rows with equal/near key values are physically stored near each other in the table

Answer: D

QUESTION 69
Which of the following DB2 tools can be used to create a DB2 script based on the contents
of a previously used script created in the DB2 Script Center?

g
A. DB2 Command Center
B. DB2 Control Center
C. DB2 Command Window

or
D. DB2 Command Line Processor
E. DB2 Stored Procedure Builder

Answer: A

QUESTION 70

L.
Which of the following DB2 objects allows multiple users to access data in a table with each
only being able to access certain portions of the data?
TA
A. Views
B. Aliases
C. Indexes
D. Mirrored Tables
E. Table Constraints

Answer: A
R

QUESTION 71
Which of the following must be performed to join a table from a DB2 database on AIX to a
PO

DB2 database on Windows NT within one SQL statement?

A. Create a syncpoint manager database on AIX.


B. Reference both tables with three part names.
C. Create a Transaction Monitor Database on AIX.
D. Set up a nickname on the database on AIX.
E. Identify one of the databases as a syncpoint manager database.
IT

Answer: D

QUESTION 72
Which of the following tools allows users to right click on a table, choose sample contents
and then get a list of some records in the table?

20
000-513

A. Table Center
B. Script Center
C. Command Center
D. Control Center
E. Client Configuration Assistant

Answer: D

QUESTION 73
Which of the following System Catalog Table columns can be examined to see if a foreign

g
key has been validated after a load?

A. SYSCAT.TABLES.CONST_VALID

or
B. SYSCAT.TABLES.FOREIGN_KEY
C. SYSCAT.TABLES.KEYS_CHECKED
D. SYSCAT.TABLES.CONST_CHECKED

Answer: D

QUESTION 74
L.
Which two of the following can be performed to see the DDL needed to create objects in an
existing database? (Choose two.)
TA
A. Use the db2look utility.
B. Run SELECT * FROM SYSCAT.TABLES.
C. Click on Show DDL in Visual Explain.
D. Click on Generate DDL in the Control Center.
E. Click on the Catalogs tab in the Control Center.
R

Answer: B, D

QUESTION 75
PO

A query needs to return column data for column C1 in descending alphabetical order. In
the access plan, a temporary table cannot be used. Which of the following index types is
NOT valid for use with this query?

A. ASCENDING INDEX ALLOWI NG REVERSE SCANS


B. DESCENDING INDEX ALLOWING REVERSE SCANS
C. ASCENDING INDEX DISALLOWING REVERSE SCANS
IT

D. DESCENDING INDEX DISALLOWING REVERSE SCANS

Answer: C

QUESTION 76
Which of the following tasks CANNOT be performed from the DB2 Script Center?

21
000-513

A. Check the status of a script execution


B. Run a saved command script immediately
C. Schedule a script to run at a later date
D. Import a DB2 command line processor input file

Answer: A

QUESTION 77
Assuming a user has CREATETAB privileges, which of the following will NOT allow the
user to create a table T2 with a foreign key that references table T1?

g
A. SYSCTRL authority
B. Control privilege on table T1

or
C. References privilege on the table T1
D. References privilege on each column of the parent key

Answer: A

QUESTION 78

L.
To enable a client to connect to a database server using TCP/IP, which of the following
must be performed from the client?
TA
A. Ping the server.
B. Catalog the server as a TCPIP node.
C. Set the DB2NBADAPTERS registry variable.
D. Catalog the database as a TCPIP database.

Answer: B
R

QUESTION 79
Which of the following utilities allows for the creation of alternative catalog tables that are
optimized for ODBC?
PO

A. db2opt
B. db2ocat
C. db2odbc
D. db2catlg

Answer: B
IT

QUESTION 80
Which of these methods will NOT enforce uniqueness of rows already in the table:

A. Creating a primary key on the table.


B. Defining a unique index on the table.
C. Altering the table to add a unique constraint.

22
000-513

D. Altering an existing column to add a unique constraint.

Answer: D

QUESTION 81
Which of the following will eliminate duplicate rows in a result set?

A. SELECT DISTINCT col1 FROM table1


B. SELECT col1 FROM table1 OPTIMIZE FOR 1 ROW
C. SELECT col1 FROM table1 WHERE col1 IS DISTINCT

g
D. SELECT col1 FROM table1 FETCH FIRST 2 ROWS ONLY
E. SELECT col1 FROM table1 UNION ALL SELECT * FROM table2

or
Answer: A

QUESTION 82
Given the following tables:
CANDIDATE
CandidateName CHAR(20) NOT NULL
CandidatelD INTEGER NOT NULL
Address CHAR(100) NOT NULL
CandidatePhoto BLOB(1M)
L.
TA
TEST_TAKEN
TestName CHAR(50) NOT NULL
TestNumber INTEGER NOT NULL
TestScore INTEGER NOT NULL
CandidatelD INTEGER NOT NULL
And the following information:
1) Candidate identifiers are unique.
R

2) Test numbers are unique.


3) Referential integrity must be supported between parent table CANDIDATE and
dependent table TEST_TAKEN.
PO

Which of the following index constraints must be created?

A. Foreign key on table candidate


B. Primary key on table candidate
C. Foreign key on table test taken
D. Primary key on table test taken
IT

Answer: B

QUESTION 83
Which of the following is NOT true of DB2MOVE?

A. DB2MOVE can export all user tables from a database.


B. DB2MOVE can export specific tables from a database.

23
000-513

C. DB2MOVE can export trigger definitions from a database.


D. DB2MOVE can export all tables created by one user in a database.
E. DB2MOVE can accept wildcards for tables to export from a database.

Answer: C

QUESTION 84
Given an application with the embedded static SQL statement:
INSERT INTO admin.payroll (employee, salary) VALUES (" Certkiller ",
30000)

g
Which two of the following could be granted insert privilege on table admin.payroll in
order for the application to bind successfully for later execution? (Choose two.)

or
A. The DB2 group called PUBLIC
B. The person who binds the application
C. Each person who executes the application
D. Each person who executes this section of the package
E. The non-PUBLIC group of the person binding the package

Answer: B, E

QUESTION 85
L.
TA
Which of the following will NOT allow for loading data into a table?

A. DBADM authority
B. SYSADM authority
C. UPDATE privilege
D. LOAD authority with the INSERT and DELETE privileges
R

Answer: C

QUESTION 86
PO

When are table check constraints enforced using the DB2 LOAD utility?

A. During the BUILD phase of the LOAD


B. During the DELETE phase of the LOAD
C. When the UPDATE CONSTRAINTS statement is issued
D. Using the SET INTEGRITY ... IMMEDIATE CHECKED statement
IT

Answer: D

QUESTION 87
Which of the following methods is required to specify the output data during export?

A. Key range
B. Table name

24
000-513

C. Column list
D. Full select

Answer: D

QUESTION 88
Given the following SQL statements and statement stub:
DB2 CONNECT TO Source_db
DB2 EXPORT TO Student_sub.del OF DEL
SELECT * FROM IIP_Student

g
DB2 CONNECT TO Target_db
DB2 IMPORT FROM Student_sub.del OF DEL MODIFIED BY
NO_TYPE_ID METHOD P (1,2,3,4,5) INSERT INTO ....

or
All of the following describe what the statements are doing, EXCEPT?

A. Exporting from a regular table


B. Exporting from a non-typed table
C. The target table is created if not present
D. Importing into a single table in a hierarchy

Answer: C L.
TA
QUESTION 89
Which of the following authorizations can be used to rollforward through database logs, but
NOT restore a backup image into a new database?

A. DBADM
B. SYSADM
C. SYSCTRL
R

D. SYSMAINT

Answer: D
PO

QUESTION 90
Which of the following CANNOT be used as input to an export?

A. Select statement with a table view


B. Select statement with large objects
C. Select statement with hierarchy table
IT

D. Select statement with multi-table join

Answer: C

QUESTION 91
Which of the following must occur in order to separate index data from table user data?

25
000-513

A. Use DMS table spaces


B. Use SMS table spaces
C. Create table space containers on different devices
D. Ensure table space definition has multiple containers

Answer: A

QUESTION 92
Which of the following is TRUE about the IMPORT utility?

g
A. Views can be created
B. Summary tables can be targets
C. Datalink columns can be imported

or
D. System catalog tables can be targets

Answer: C

QUESTION 93

L.
An IXF file contains data to be placed into a DB2 database. The layout of the data in the file
matches the layout of a view in the target database. Which of the following DB2 utilities can
insert the data using the view?
TA
A. LOAD
B. LVIEW
C. EXPORT
D. IMPORT
E. UPLOAD

Answer: D
R

QUESTION 94
During database restart, some indexes may be required to be rebuilt. This can be
PO

minimized by changing which of the following DBM CFG parameters prior to restart?

A. update dbm cfg using indexrec access


B. update dbm cfg using indexrec restart
C. update dbm cfg using indexrec connect
D. update dbm cfg using indexrec rebuild
IT

Answer: A

QUESTION 95
Which of the following is supported when LOGRETAIN is OFF and USEREXIT is OFF?

A. Log archiving
B. Crash recovery

26
000-513

C. Rollforward recovery
D. Rollforward to point in time

Answer: B

QUESTION 96
How might you recover the original backup history file given the following?
LIST BACKUP ALL FOR <database-alias> SQL2160W
A damaged recovery history file has been replaced. Processing continued.

g
A. Restore the database from previous backup.
B. Copy the database SQLBP.2 file to SQLBP.1.
C. Restore just the catalog tablespace from a previous backup.

or
D. Copy the db2rhist.asc file from another database on the same instance.

Answer: A

QUESTION 97

on invalid drives/devices?

A. Use rollforward recovery on the database.


L.
Which of the following must occur to restore a database which has table space containers
TA
B. Use the restart database command on the database.
C. Use the recovery history file to restore the database.
D. Use the restore command.

Answer: D

QUESTION 98
R

Given the command:


BACKUP DATABASE sample to path/dir
Which of the following parameters determines how much memory will be used to backup
PO

the database sample?

A. logbufsz
B. backbufsz
C. extentsize
D. prefetchsize
IT

Answer: B

QUESTION 99
Given the DBM configuration information:
Application support layer heap size (4KB)(ASLHEAPSZ) = 15
Database monitor heap size (4KB)(MON_HEAP_SZ) = 48
Sort heap threshold (4KB)(SHEAPTHRES) = 4096

27
000-513

UDF shared memory set size (4KB)(UDF_MEM_SZ) = 256


Which of the following parameters affects whether record blocking for an application will
occur?

A. ASLHEAPSZ
B. SHEAPTHRES
C. UDF_MEM_SZ
D. MON_HEAP_SZ

Answer: A

g
QUESTION 100
Given the following scenario:

or
First Snapshot Output:
GET SNAPSHOT FOR ALL DATABASES
Database Snapshot
Database name = SAMPLE
...
High water mark for connections = 100
...
Applications connected currently = 50
Appls. executing in db manager currently = 40
L.
TA
...
Second Snapshot Output:
GET SNAPSHOT FOR ALL DATABASES
Database Snapshot
Database name =SAMPLE
...
High water mark for connections = 100
R

Applications connected currently = 80


Appls. executing in db manager currently = 40
Both snapshots show "Appl. executing in db manager currently equal to 40".
PO

Which of the following database manager configuration parameters must be updated to


increase this data element, assuming there are 60 connections attempting to execute an SQL
statement?

A. MAXAPPLS
B. MAXAGENTS
C. MAXCAGENTS
IT

D. NUM_INITAGENTS
E. MAX_COORDAGENTS

Answer: C

QUESTION 101
Which of the following commands will cause explain snapshots to be captured for SQL

28
000-513

statements issued from the Command Line Processor?

A. REBIND CLP PACKAGE


B. SET CURRENT EXPLAIN SNAPSHOT NO
C. BIND CLP PACKAGE WITH EXPLSNAP YES
D. SET CURRENT EXPLAIN SNAPSHOT EXPLAIN

Answer: D

QUESTION 102

g
Which of the following is a valid statement to create an event monitor?

A. CREATE EVENT MONITOR ev1 FOR TABLES WHERE APPL_ NAME ='PGM1'

or
WRITE TO FILE 'd:\f1'
B. CREATE EVENT MONITOR ev1 FOR DEADLOCKS WHERE APPL_NAME ='PGM1'
WRITE TO FILE 'd:\f1'
C. CREATE EVENT MONITOR ev1 FOR TABLESPACES WHERE APPL_NAME
='PGM1' WRITE TO FILE 'd:\f1'

='PGM1' WRITE TO FILE 'd:\f1'

Answer: D
L.
D. CREATE EVENT MONITOR ev1 FOR CONNECTIONS WHERE APPL_NAME
TA
QUESTION 103
Given the following statement:
SELECT id, deptname, manager
FROM staff, org
WHERE dept=deptnumb
ORDER BY deptname
R

How many sort operations occurred based on the Visual Explain output?

A. 0
PO

B. 1
C. 2
D. 3

Answer: D

QUESTION 104
IT

Which of the following are functional groups (switches) that can be collected with snapshot
monitoring?

A. BUFFERPOOL, SORT, TABLESPACE, UOW


B. BUFFERPOOL, SORT, DEADLOCKS, STATEMENTS
C. BUFFERPOOL, SORT, STATEMENTS, TABLE, UOW
D. BUFFERPOOL, SORT, CONNECTIONS, DEADLOCKS

29
000-513

E. BUFFERPOOL, SORT, CONNECTIONS, TABLESPACE

Answer: A

QUESTION 105
Which of the following is shown by the Messages Page on the Journal?

A. All messages in the DB2 Diagnostic log


B. All messages issued by the DB2 Governor
C. All messages issued by the DB2 Audit Facility

g
D. All messages issued through the DB2 administration tools

Answer: D

or
QUESTION 106
Nodes that are down or in an unknown state are reported in the Alert Center as which of
the following?

A. Alarms
B. Alerts
C. Warnings
D. Informational Messages
L.
TA
Answer: A

QUESTION 107
Given the scenario:
user1 Issues :CONNECT TO db1
user2 Issues :CONNECT TO db1
R

user1 Issues: ALTER BUFFERPOOL BP1 SIZE 10000


user1 Issues :CONNECT RESET
During which of the following does the new size of the BP1 buffer pool get allocated?
PO

A. If user1 now connects to db1


B. When database db1 is backed up
C. When user1 issues ALTER BUFFERPOOL
D. The next time the database is re-activated

Answer: D
IT

QUESTION 108
Which of the following commands displays the current values of the configured DB2
registry variables?

A. db2set-lr
B. db2set-all

30
000-513

C. db2set-env
D. db2set-list
E. db2set-display

Answer: B

QUESTION 109
Given the following Event Monitor output:
Database Event
Buffer Pool Statistics:

g
Buffer pool logical data page reads: 22500
Buffer pool physical data page reads: 1800
Buffer pool data page writes: 1200

or
Buffer pool logical index page reads: 10000
Buffer pool physical index page reads: 2500
Buffer pool index page writes: 230
Buffer pool read time: 3230 milliseconds
Buffer pool write time: 7830 milliseconds
...
Buffer pool LSN gap cleans: 8
Buffer pool dirty page steal cleans: 0
Buffer pool dirty page threshold cleans: 3
L.
TA
Which two of the following database configuration parameters will affect when bufferpool
page cleaners are triggered? (Choose two.)

A. DBHEAP
B. SOFTMAX
C. LOGBUFSZ
D. MINCOMMIT
R

E. CHNGPGS_THRESH
F. APP_CTL_HEAP_SZ
PO

Answer: B, C

QUESTION 110
Which of the following tasks is performed by the DB2 Query Patroller Tracker Utility?

A. Accepts, analyzes, prioritizes, and schedules database requests and optionally notifies
users when their requests have been processed.
IT

B. Enables the user to monitor query status, view job details, cancel jobs, submit new jobs,
drop result tables, and resubmit completed jobs.
C. Allows you to determine which tables and columns have been accessed most frequently,
which tables have returned the most result rows, and which jobs have been completed
within a specific time period.
D. Enables the system administrator to manage the DB2 Query Patroller system parameters,
create or delete profiles for DB2 Query Patroller users, manage nodes, result destinations,

31
000-513

data sources and job queues.

Answer: C

QUESTION 111
Which of the following allows containers to be added to an SMS tablespace?

A. BACKUP DATABASE command


B. ALTER TABLESPACE command
C. RESTORE DATABASE command

g
D. ALTER SMS TABLESPACE command

Answer: C

or
QUESTION 112
Which of the following must occur in order to separate index data from table user data?
E. Use DMS table spaces
F. Use SMS table spaces

L.
G. Create table space containers on different devices
H. Ensure table space definition has multiple containers

Answer: A
TA
QUESTION 113
Given the following SQL statements:
1) CONNECT TO mydb
2) CONNECT RESET
3) CREATE TABLESPACE ts8 PAGESIZE 8K MANAGED BY SYSTEM USING
('D:\file1') BUFFERPOOL bp8
R

4) CREATE BUFFERPOOL bp8 SIZE 1000 PAGESIZE 8K


5) CREATE TABLE mytab (col1 CHAR(64)) IN ts8
In order for the table to be created with an 8K page size, which of the following indicates
PO

the order that the above statements must be executed?

A. 1,3,4,5,2
B. 1,4,3,5,2
C. 1,3,2,1,4,5
D. 1,4,2,1,3,5
IT

Answer: D

QUESTION 114
Given the following DDL statements:
CREATE TABLE PERSON OF PERSON_T (REF IS OID USER GENERATED)
CREATE TABLE EMP OF EMP_T UNDER PERSON INHERIT SELECT PRIVILEGES
CREATE TABLE STUDENT OF STUDENT_T UNDER PERSON INHERIT SELECT

32
000-513

PRIVILEGES
CREATE TABLE STAFF (COL1 INT, COL2 INT)
and
INSERT 1 row into PERSON
INSERT 1 row into EMP
INSERT 1 row into STUDENT
INSERT 2 rows into STAFF
How many rows will be returned after issuing the SQL statement:
SELECT * FROM PERSON?

g
A. 1
B. 2
C. 3

or
D. 5
E. 10

Answer: C

QUESTION 115
Given the command:
CREATE DATABASE inventory
CATALOG TABLESPACE MANAGED BY SYSTEM
L.
TA
USING ('path1','path2')
EXTENTSIZE 16 PREFETCHSIZE 32
USER TABLESPACE MANAGED BY SYSTEM
USING ('patha')
TEMPORARY TABLESPACE MANAGED BY DATABASE
USING (FILE 'filea' 1000) WITH "LOGSPACE1"
Which of the following table spaces has all of its storage pre-allocated?
R

A. LOGSPACE1
B. TEMPSPACE1
PO

C. USERSPACE1
D. SYSCATSPACE

Answer: B

QUESTION 116
Given the following:
IT

A System has twenty 4GB disk devices for the database.


Table is named mytab
mytab data portion 17GB
mytab index portion 23GB
Two tablespaces exist
mydatats
myindexts

33
000-513

If the table was created as follows:


CREATE TABLE mytab (...) IN mydatats INDEX IN myindexts
Given that containers cannot span devices, which of the following is the minimum number
of containers that must be created (for all table spaces) in order to hold the expected
amount of data?

A. 5
B. 10
C. 15
D. 20

g
Answer: C

or
QUESTION 117
Which of the following objects CANNOT be altered?

A. index
B. table
C. nickname
D. bufferpool
E. table space L.
TA
Answer: A

QUESTION 118
Given the command:
CREATE DATABASE inventory
CATALOG TABLESPACE MANAGED BY SYSTEM USING ('path1','path2')
EXTENTSIZE 16 PREFETCHSIZE 32
R

USER TABLESPACE MANAGED BY SYSTEM USING ('patha')


TEMPORARY TABLESPACE MANAGED BY DATABASE USING (FILE 'files' 1000)
WITH "EXTENTSIZE 8"
PO

How many bufferpools are in the inventory database?

A. 0
B. 1
C. 2
D. 3
E. 4
IT

Answer: B

QUESTION 119
Given the partial output of the command:
GET DATABASE CONFIGURATION FOR db1
Database Configuration for Database db1

34
000-513

Rollforward pending = TABLESPACE


Which of the following commands provides information to determine which table space is
in rollforward pending state?

A. GET TABLESPACES
B. LIST TABLESPACES
C. SELECT * FROM SYSCAT.TSPACE
D. GET PENDING STATE TABLESPACES
E. LIST DATABASE TABLESPACES STATE

g
Answer: B

QUESTION 120

or
Which of the following allows user "manager" (who is a regular user) to control access to
schema "city"?

A. CREATE SCHEMA city GRANT TO manager


B. CREATE SCHEMA city RESTRICT manager
C. CREATE SCHEMA city AUTHORIZATION manager

L.
D. CREATE SCHEMA city, when logged on as user "manager"

Answer: C
TA
QUESTION 121
A DB2 server with DB2 Connect installed needs to have the userids and passwords for the
DB2 clients going to D132 for OS/390 validated at the DB2 for OS/390 host. Which of the
following authentication levels provides this requirement while providing authentication for
other DB2 clients at the DB2 server?
R

A. DCS
B. DRDA
C. HOST
PO

D. CLIENT
E. SERVER

Answer: A

QUESTION 122
Which of the following is NOT possible when issuing a FORCE command?
IT

A. IDLE users can be successfully forced


B. Users creating a database can be forced
C. DB2STOP can be successfully executed during a force
D. The database will still successfully accept connections

Answer: C

35
000-513

QUESTION 123
Given an application with the embedded static SQL statement:
INSERT INTO admin.payroll (employee, salary) VALUES ("Tess King", 30000)
Which of the following privileges must a user hold to run the application?

A. ALTER on the table


B. INSERT on the table
C. UPDATE on the table
D. DBADM on the database

g
E. EXECUTE on the package

Answer: E

or
QUESTION 124
Which of the following is required for the use of TCP/IP between a client and server?

A. A named pipe is established between client and server.

L.
B. Both the client and server are on Unix operating systems.
C. The registry variable DB2COMM includes TCPIP at the server.
D. The registry variable DB2COMM includes TCPIP at the client.
TA
Answer: C

QUESTION 125
Given the following:
SYSADM group name (SYSADM GROUP) = ADMIN
SYSCTRL group name (SYSCTRL GROUP) = CONTROL
SYSMAINT group name (SYSMAINT GROUP) = MAINT
R

Which two of the following determines which users have SYSCTRL authority? (Choose
two.)
PO

A. The node directory


B. The system catalog
C. The operating system security
D. The database configuration file
E. The database manager configuration file

Answer: A, C
IT

QUESTION 126
In which of the following locations must userids and passwords be defined if using
authentication SERVER?

A. The node directory on the server


B. The node directory on the client

36
000-513

C. The system catalog on the server


D. The operating system on the server
E. The operating system on the client

Answer: D

QUESTION 127
When scheduling a job, certain actions can be specified to take place upon completion or
failure of the job. Which two of the following actions does this include? (Choose two.)

g
A. Run a command script.
B. Send a page to a pager.
C. Send a message to the job log.

or
D. Re-run the job that just completed.
E. Send an emaiI to an indicated address.

Answer: C, D

QUESTION 128

L.
Which of the following must be performed to restrict clients from being able to discover
ALL DB2 instances on a server?
TA
A. Set the DISCOVER_COMM parameter to NONE.
B. Set the DISCOVER_DB parameter to DISABLE.
C. Set the DAS instance parameter SEARCH to DISABLE.
D. Set the DAS instance parameter DISCOVER to DISABLE.

Answer: D
R

QUESTION 129
Which of the following DB2 commands updates information used by the optimizer when
choosing an access path?
PO

A. REORG
B. IMPORT
C. REBIND
D. RUNSTATS

Answer: D
IT

QUESTION 130
Which of the following statements is TRUE?

A. DB2MOVE does not support LOBs.


B. DB2MOVE supports the datalinks data type
C. DB2MOVE supports DRDA data resources and targets.

37
000-513

D. DB2MOVE supports LOBs residing on disk in separate files


E. DB2MOVE supports exporting and importing trigger definitions

Answer: D

QUESTION 131
For which of the following event types can event monitors be used to gather information?

A. DATABASE, DEADLOCKS, BUFFERPOOLS, SORTS, TRANSACTIONS


B. DATABASE, TABLES, DEADLOCKS, BUFFERPOOLS, SORTS, TRANSACTIONS

g
C. DATABASE, DEADLOCKS, BUFERPOOLS, SORTS, CONNECTIONS,
TRANSACTIONS
D. DATABASE, TABLES, DEADLOCKS, BUFFERPOOLS, CONNECTIONS,

or
TRANSACTIONS

Answer: D

QUESTION 132
Given the following data from syscat.tabauth:
Exhibit missing. Will be fixed in later versions
L.
Which of the following users CANNOT view the data in table MYTAB?
TA
A. W
B. K
C. M
D. user1

Answer: A
R

QUESTION 133
Given the following data from SYSCAT.TABLES with partial dates:
Exhibit missing. Will be fixed in later versions
PO

Which of the following tables will benefit most from being reorganized?

A. T1
B. ORG
C. MYTABV
D. EMP_SALES
E. EMPO_SALES
IT

Answer: D

QUESTION 134
Given the following piece of a LIST APPLICATIONS output:
Exhibit missing. Will be fixed in later versions
Which of the following commands terminates the client application's connection?

38
000-513

A. KILL APPLICATION (7)


B. FORCE APPLICATION
C. DISCONNECT APPLICATION (7)
D. KILL APPLICATION payroll.exe
E. FORCE APPLICATION payroll.exe
F. DISCONNECT APPLICATION payroll.exe

Answer: F

g
QUESTION 135
Given the following table:
Exhibit missing. Will be fixed in later versions

or
Which of the following statements and in what order must they be called to restrict normal
users from seeing the salary of a particular person, but allowing the users to see the name?

A. 1
B. 2
C. 1,4,3
D. 1,5,3

Answer: C
L.
TA
QUESTION 136
Given the table definitions:
Exhibit missing. Will be fixed in later versions
Which of the following conditions must be met before the update will be successful?

A. Owner_id 12345 muist exist in the id.pc table


R

B. Owner_id 12345 must not exist in the id.pc table


C. Employee_num 12345 must exist in the id.employees table
D. Employee_num 12345 must not exist in the id.employees table
PO

Answer: C

QUESTION 137
Given the exhibit:
Exhibit missing. Will be fixed in later versions
How many base tables are accessed in the query?
IT

A. 1
B. 2
C. 3
D. 4

Answer: A

39

You might also like