The .NET languages are the most popular languages for writing stored procedures in SQL Server 2000. True False TRUE ANSWER : ? YOUR ANSWER : ?
With this type of index, the data are stored in the bottom level of the index and in the same order as that index. Secondary Clustered Nonclustered Primary TRUE ANSWER : ? YOUR ANSWER : ?
With SQL Server, parameters and variables in T-SQL start with the "%" sign. False True TRUE ANSWER : ? YOUR ANSWER : ?
By default, SQL Server will create one data file and one log file for each newly created database. True False TRUE ANSWER : ? YOUR ANSWER : ?
SQL Server program code that is executed after an SQL command has been processed is called a(n): INSTEAD OF trigger BEGIN trigger BEFORE trigger AFTER trigger TRUE ANSWER : ? YOUR ANSWER : ?
Which type of SQL Server cursor concurrency places an update lock on a row when the row is read? SCROLL_LOCK OPTIMISTIC READCOMMITTED READ_ONLY TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not a factor in determining the concurrency control behavior of SQL Server? Locking hints Cursor concurrency setting Transaction isolation level Lock level TRUE ANSWER : ? YOUR ANSWER : ?
With which type of SQL Server recovery model, is no logging done? Differential recovery Simple recovery Full recovery Bulk-logged recovery TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following refers to the SQL Server transaction isolation level which places and holds locks on all rows that are read? READ COMMITTED READ UNCOMMITTED REPEATABLE READ SERIALIZABLE TRUE ANSWER : ? YOUR ANSWER : ?