Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
SQL Server 2000 Questions
In Microsoft SQL Server, when you create a new database without custom file settings, does the engine by default create one primary data file (.mdf) and one transaction log file (.ldf)?
In Transact-SQL (T-SQL) for Microsoft SQL Server, do parameters and variables begin with the percent sign (%) rather than the at sign (@)?
In Microsoft SQL Server, can AFTER triggers be defined on views, or are AFTER triggers limited to tables while views support INSTEAD OF triggers?
Within SQL Server’s transaction isolation options, is SERIALIZABLE the strictest standard isolation level in terms of locking and preventing phenomena?
In SQL Server, does the system automatically create an index for every primary key and for every foreign key, or only guarantee automatic indexing for primary keys?
Does SQL Server support exactly three recovery models named Simple, Full, and Bulk, or is the correct name “Bulk-logged” rather than “Bulk”?
Is the blanket claim “Nonclustered indexes are faster than clustered indexes for data retrieval” valid for SQL Server, or does performance depend on workload and query patterns?
Trigger support in SQL Server: does the platform provide INSTEAD OF and AFTER triggers but not BEFORE triggers?
Does Microsoft SQL Server implement the Transact-SQL language (commonly abbreviated as T-SQL) for querying and procedural logic?
Under pessimistic locking in SQL Server, are locks typically acquired when data is read (and held as needed) rather than waiting until the user issues an update before any locks are taken?
SQL Server security model: Is the following claim accurate? "Selecting Windows Authentication only (disabling Mixed Mode) results in better security."
Core purpose of SQL Server indexes: Evaluate the statement: "SQL Server indexes are special data structures used to improve performance."
Optimistic concurrency in SQL Server: Judge the claim: "With optimistic locking, an update lock is placed on the row when the row is read."
Using reserved words as identifiers in SQL Server: Evaluate the statement: "An SQL Server reserved word must be placed in brackets; otherwise SQL Server treats it as a keyword rather than an identifier."
Backup types in SQL Server: Judge the statement: "A differential backup makes a copy of the entire database."
Default transaction isolation in SQL Server: Assess the statement: "READ COMMITTED is the default isolation level."
Ways to create or modify tables in SQL Server: Evaluate the claim: "There is only one way to create and modify tables in SQL Server: writing SQL code using CREATE or ALTER."
Index types in SQL Server: Judge the statement: "SQL Server supports two kinds of indexes: clustered and nonclustered."
Stored procedure languages in SQL Server 2000: Evaluate the statement: "The .NET languages are the most popular languages for writing stored procedures in SQL Server 2000."
Meaning of the prefix "dbo" in SQL Server: Judge the statement: '"dbo" stands for database object.'
1
2