Advanced Database Administration and Sybase ASE
Covers advanced database topics including synonyms, transaction isolation levels, Sybase ASE administration, memory management, indexing, DBCC commands, backup/restore operations, and recovery models.
Questions
Which of the following is a prerequisite for Database Mail?
- Service Broker
- Database Mirroring
- Extended MAPI Profile
- Microsoft Exchange Server
Which of the following sentences is true for recovery models?
- In the Simple recovery model, all transactions are logged.
- In the Bulk-Logged recovery model, all transactions are logged.
- In the Full recovery model, most transactions are minimally logged.
- In the Simple recovery model, most transactions are minimally logged.
Which is an ideal pool for transaction log cache?
- 2K
- 8K
- 16K
- 4K
Which option can be used to generate a new password for an sso login from RUN_SERVER file
- -c
- -E
- -u
- -p
Which trace is useful for checking index selection by Sybase Optimiser
- 3604
- 2512
- 302
- 310
Which parameter tells us about current memory used by Sybase ASE
- max memory
- physical memory
- logical memory
- network memory
Which metadata cache descriptor is used for holding database structure
- DBINFO
- DES
- IDES
- DBTABLE
Which dbcc command logs records onto dbccdb database
- dbcc checkdb
- dbcc checkverify
- dbcc checkstorage
- dbcc checkalloc
What option is suited for adding an identity column in a existing table index to make a non uniqe index a unique one
- auto identity
- identity in nonunique index
- unique auto_identity index
- async log service
What clause can be used to check if a dump is valid or not along with load database statement
- with header
- with headerofdump
- with dumpstatus
- with listonly
what are the valid engine groups which pre exist on a Sybase ASE
- ASEENGINE
- ANYENGINE
- LASTENGINE
- LASTONLINE
What is the extended limit ( in charecters ) of identifiers in ASE 15
- 230
- 450
- 255
- 100
if you need to preserve some user defined datatypes in tempdb which database should you add them to
- sybmgmtdb
- sybsystemprocs
- model
- master
Which @@ gobal variable can tell you the tranasction mode of a session
- is_chained
- tran_chained
- chained
- tranchained
Which isolation level prevents phantom reads
- 0
- 3
- 2
- 1
What are the different types of synonyms?
- Schema synonym
- Public synonym
- Private synonym
- Database synonym
To create a private synonym in another user’s schema you must have the following privilege:
- CREATE SYNONYM
- CREATE ANY SYNONYM
- CREATE PUBLIC SYNONYM
- CREATE OTHER SYNONYM
What are the DML statements you can use on a synonym created for a table?
- Select
- Insert
- Update
- Delete
What are the data base objects for which you can create synonyms?
- Table
- View
- Procedure
- Package
- Another Synonym
- Sequence
Which are not an advantages of a synonym?
- Alias for a schema object
- Provide security by hiding the name of the object
- Provide security by hiding the schema owner of the object
- Reduce complexity in SQLs by creating short synonyms names for objects with long names
- By granting privilege to synonym, granting privilege to the underlying object can be avoided