Services
Discover
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Database Processing
Exam 10: Managing Databases With SQL Server 2008 R2
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
True/False
To use an SQL Server reserved word as a user identifier,it must be enclosed in square brackets [ ].
Question 2
True/False
The name TRANSACTION is so special to SQL Server that no stored procedures will work on a table with that name.
Question 3
True/False
SQL Server AFTER triggers may be used with insert and update actions,but not delete actions.
Question 4
Multiple Choice
The language available in SQL Server that adds programming constructs to the SQL language is known as ________.
Question 5
Multiple Choice
Which of the following is the most restrictive transaction isolation level supported by SQL Server?
Question 6
True/False
With SQL Server,the preferred way to create database structures is with SQL statements.
Question 7
True/False
Data can be entered directly into a table in Enterprise Manager or via SQL INSERT statements submitted through the Microsoft SQL Server Management Studio.
Question 8
Multiple Choice
The default cursor concurrency setting for a static cursor in SQL Server is ________.
Question 9
Multiple Choice
Which of the following is not a type of trigger supported by SQL Server?
Question 10
True/False
With SQL Server,a cluster index has the data with and in the same order as the bottom level of the index.
Question 11
True/False
With SQL Server,a nonclustered index does not contain data but has pointers to the data.
Question 12
True/False
In SQL Server,locking behavior can be modified by providing locking hints in the WITH parameter of the FROM clause in SELECT statements.
Question 13
True/False
In SQL Server,insert and update triggers store new values in a pseudotable named inserted.
Question 14
Multiple Choice
Which type(s) of index(s) in SQL Server has/have a bottom level that does not contain data but has pointers to the data?
Question 15
Multiple Choice
Which of the following is not a transaction isolation level supported by SQL Server?
Question 16
True/False
In SQL Server,triggers can roll back the transaction that caused them to be fired.
Question 17
Multiple Choice
The SQL Server GUI interface database management program is the ________.
Question 18
Multiple Choice
When creating a T-SQL statement,you should:
Question 19
Multiple Choice
A stored procedure can be stored in a text file and run with the Microsoft SQL Server Management Studio.If we are running the code that creates this procedure for the third time,it must start with ________.