Home / CSE / Database System 2 - CS :: SQL Server 2000

CSE :: Database System 2 - CS

  1. With which type of SQL Server recovery model are all database changes logged except those that cause large log entries?

  2. A.

     Differential recovery

    B.

     Full recovery

    C.

     Simple recovery

    D.

     Bulk-logged recovery


  3. Using SQL Server 2000, which of the following symbols is used to indicate parameters in stored procedures?

  4. A.

     #

    B.

     %

    C.

     &

    D.

     @


  5. What mode of authentication does SQL Server NOT provide?

  6. A.

     Windows-only security

    B.

     Both SQL Server and Windows-only security

    C.

     Mixed security

    D.

     SQL Server only security


  7. The strictest transaction isolation level provided by SQL Server is called:

  8. A.

     REPEATABLE READ

    B.

     SERIALIZABLE

    C.

     READ COMMITTED

    D.

     READ UNCOMMITTED


  9. SQL Server program code that is executed instead of an SQL command that needs to be processed is called a(n):

  10. A.

     INSTEAD OF trigger

    B.

     BEFORE trigger

    C.

     AFTER trigger

    D.

     BEGIN trigger


  11. Which type of SQL Server cursor concurrency places an update lock on a row when the row is read?

  12. A.

     READ_ONLY

    B.

     SCROLL_LOCK

    C.

     OPTIMISTIC

    D.

     READCOMMITTED


  13. Which of the three possible types of triggers does SQL Server support?

  14. A.

     INSTEAD OF only

    B.

     AFTER only

    C.

     BEFORE only

    D.

     INSTEAD OF and AFTER only


  15. Which of the following is a way to create and modify tables using SQL Server?

  16. A.

     Write SQL code using either CREATE or ALTER SQL statements only

    B.

     Use the graphical facilities of SQL Server Enterprise Manager only

    C.

     Both of the two methods above will work

    D.

     Neither of the two methods above will work


  17. With which type of SQL Server recovery model, is no logging done?

  18. A.

     Differential recovery

    B.

     Full recovery

    C.

     Bulk-logged recovery

    D.

     Simple recovery


  19. SQL Server 2000 stored procedures can:

  20. A.

     never be kept within the database

    B.

     be kept within the database and invoked by application programs

    C.

     be stored on the users' computer

    D.

     support BEFORE, INSTEAD OF and AFTER types