You are not logged in.

#1 2012-04-02 06:11:23

Ibraheem
Webmaster
From: Capital
Registered: 2012-03-16
Posts: 23,140
Website

Sybase Certification Interview Questions And Answers

Certifications :: Sybase Certification Exam Job Interview Questions and Answers

Sybase Certification Exams guideline for job interview preparation. Explore list of Sybase Certification Exams frequently asked questions(FAQs) asked in number of Sybase Certification Exams interviews. Post your comments as your suggestions, questions and answers on any Sybase Certification Exams Interview Question or answer. Ask Sybase Certification Exams Question, your question will be answered by our fellow friends.

1 ► Explain Where are table/index level statistics stored?A. sysstatisticsB. systabstatsC. On the leaf level of the indexD. The GAM pageE. The distribution page
2 ► Explain What is the purpose of dsync flag?A. to synchronize primary and mirrored devicesB. to synchronize primary and secondary databasesC. to control whether writes to operating system files are buffered or notD. to control Backup Servers access to a dump device
3 ► Explain The reorg command may be used to: (Choose 2)A. Compact a table that uses datarows locking.B. Reclaim unused space in a table that uses allpages locking.C. Reclaim unused space in an index that uses datapages locking.D. Rebuild a table that uses allpages locking.
4 ► Explain Which of the following operations require "quiesce database"?A. altering the database to a new sizeB. performing non-Sybase unmirroring and backup operations.C. truncating the transaction logD. dumping the database using Sybase Backup Server.
5 ► Explain What is the maximum number of tables allowed in a join query?A. 50 User tables and 14 work tablesB. 32 User tables and 14 work tablesC. 30 User tables and 12 work tablesD. 16 User tables and 12 work tables
6 ► Explain Which of the following cache or IO tuning methods can reduce the spinlockcontention on a single "hot" table that is already bound to a named cache?A. Create 16K buffer pool in the named cacheB. Change the cache replacement strategy of the named cache to relaxed LRUC. Partition the named cacheD. Increase the named cache size
7 ► Explain Which of the following create table can prevent or minimize rowforwarding in DOL tables?A. fillfactorB. max_rows_per_pageC. exp_row_sizeD. reservepagegap
8 ► How to reclaim space from a fragmented allpages heap table?A. run reorg commandB. dump and load the databaseC. create and drop a clustered indexD. truncate the least used pages
9 ► Do you know Transaction Isolation Level 2 is directly supported in the following lockscheme(s):A. AllpagesB. Allpages, DatapagesC. Allpages, Datapages, DatarowsD. Datapages, Datarows
10 ► If sp_sysmon output consistently shows a high number of VoluntaryYields, which configuration parameter could be modified to improve performance?A. user log cache sizeB. time sliceC. identity grab sizeD. stack sizeE. cpu accounting flush interval
11 ► Explain What are some ways to reduce last data page lock contention for inserts?(Choose 3)A. alter the table to use the Datarows locking schemeB. alter the table to use the Datapages locking schemeC. partition the tableD. create a clustered index on a random keyE. increase the server configuration for the number of locksF. increase the server configuration for the deadlock checking period
12 ► Suppose The titles table has 50,000 rows and a nonclustered index on the pricecolumn. Which of the following queries use less logical I/Os?A. select "Min" = min(price), "Max" = max(price) from titlesB. select "Min" = (select min(price) from titles), "Max" = (select max(price) from titles)C. They will both use the same number of I/Os
13 ► Suppose All of the following tactics may reduce contention for cache spinlocks in anASE configured to support multiple online engines, exceptA. Increasing the spinlock ratioB. Creating additional named caches and binding frequently used tables to themC. Creating partitions in heavily used cachesD. Returning to a single engine configuration
14 ► Explain Which of the following can NOT have an assigned execution classA. databaseB. A stored procedureC. An applicationD. A login
15 ► Do you know What type of access method is used for a covered query?A. parallel index scanB. serial index scanC. hash based index scanD. hash based table scan
16 ► Can you explain What is the maximum row size for DOL tables?A. 1024 bytes of data.B. 1958 bytes of data.C. 1962 bytes of data.D. 2000 bytes of data.
17 ► Can you explain Which two are advantages of use max_rows_per_page to reduce the rowdensity? (Choose 2.)A. It may decrease the disk space used.B. It may decrease the contention.C. It may decrease the number of page splits.D. It may decrease the number of page I/Os.E. It may help to decrease row movement of frequently updated varchar columns.
18 ► Explain Which of the following statements describes readpast locking? (Choose 2)A. It can be specified at the session, transaction, and table level.B. It allows insert, update, and delete commands to read past any incompatible lock.C. It allows readers to not block writers.D. It allows select and readtext queries to silently skip all rows or pages locked with incompatible locks.
19 ► Do you know What is the purpose of dsync flag?A. to synchronize primary and mirrored devicesB. to synchronize primary and secondary databasesC. to control whether writes to operating system files are buffered or notD. to control Backup Servers access to a dump device
20 ► Suppose A query and any views in a query can reference how many user tables?A. 12B. 16C. 32D. 50E. 192
21 ► Where are table/index level statistics stored?A. sysstatisticsB. systabstatsC. On the leaf level of the indexD. The GAM pageE. The distribution page
22 ► Which of the following operations require "quiesce database"?A. altering the database to a new sizeB. performing non-Sybase unmirroring and backup operations.C. truncating the transaction logD. dumping the database using Sybase Backup Server.
23 ► Which of the following can NOT have an assigned execution classA. databaseB. A stored procedureC. An applicationD. A login
24 ► Explain Which of the following steps is NOT always necessary for performing atuning benchmark?A. record a baseline measurementB. change one variable, holding all others constantC. make a new measurementD. restart Adaptive Server
25 ► Explain When does the optimizer consider a hash based table scan on an APL table?A. if it is a heap tableB. if it is has a clustered indexC. If it is a table with a clustered index and a non clustered indexD. If it is a partitioned table with a clustered index
26 ► Explain Which of the following are true of the Datarows Locking Scheme? (Choose2)A. Index pages are locked.B. No transaction locks are held on index pages.C. Server uses page locks and row locks, but not table locks.D. Server uses table locks and row locks, but not page locks.
27 ► Do you know The reorg command may be used to: (Choose 2)A. Compact a table that uses datarows locking.B. Reclaim unused space in a table that uses allpages locking.C. Reclaim unused space in an index that uses datapages locking.D. Rebuild a table that uses allpages locking.
28 ► Parallel sorting can be used for: (Choose 3)A. Sort Merge joinsB. slow bcpC. ReformattingD. Creating indexesE. reorg compact
29 ► Do you know What is the maximum number of key columns allowed in an index?A.16B. 31C. 32D. 63
30 ► Explain When you run optdiag command on a allpages-locked table with 1000pages, what will be value of "Forwarded row count"?A. 1000B. 500C. 0D. 1
31 ► Suppose Given FREDs login is assigned EC2. When he uses a stored procedurebound to EC3 his scheduling priority is:A. highB. mediumC. lowD. unable to be determined
32 ► Explain Which ASE commands or utilities can be used to examine partition skew?(Choose 2)A. sp_helpdbB. sp_helpartitionC. sp_helpD. optdiagE. reorg

2012-04-02 06:11:23

Advertisement
Ads By Google

Re: Sybase Certification Interview Questions And Answers



\n

Board footer