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 transaction processing, which isolation level places and then holds shared locks on every row it reads so that the same rows cannot be modified by other transactions until the current transaction completes? Select the correct isolation level from the standard SQL Server list.
In SQL Server 2000 backup strategy, which option creates a copy of all changes made since the last full (complete) backup? Choose the most accurate backup type used for faster restores between full backups.
In Microsoft SQL Server, what are the valid ways to create and modify tables in a database? Consider both T-SQL statements and graphical administrative tools.
In SQL Server indexing, which index type has a leaf (bottom) level that does not store the actual table data but instead stores pointers (row locators) to the data rows?
In SQL Server indexing, which index type stores the actual data rows at the leaf (bottom) level and keeps those rows physically ordered the same as the index key?
In SQL Server recovery planning, under which recovery model are all database changes fully logged, enabling point-in-time recovery using transaction log backups?
In the ANSI/SQL Server isolation hierarchy, which is the strictest isolation level that prevents dirty reads, non-repeatable reads, and phantom rows by using key-range locking?
In SQL Server's trigger architecture, which trigger types are supported by the engine and available for tables and views as appropriate?
In SQL Server recovery models, which model is commonly described as having “no logging,” even though SQL Server always writes to the transaction log internally? Select the closest correct choice based on standard terminology.
When you define constraints in SQL Server, on which key type does the engine automatically create a unique index by default (often clustered unless specified otherwise)?
Microsoft SQL Server — Concurrency Control Factors Which of the following is NOT a determinant of how SQL Server performs concurrency control and locking during reads and writes?
Microsoft SQL Server — Authentication Modes Which authentication mode is NOT offered by SQL Server for client connections?
SQL Server 2000 Stored Procedures — Parameter Prefix In Transact-SQL, which symbol indicates a parameter within a stored procedure definition or call?
SQL Server 2000 Stored Procedures — Storage and Invocation Which statement best describes how stored procedures are managed and used in SQL Server?
SQL Server Triggers — INSTEAD OF vs AFTER What is the SQL Server program unit that fires instead of executing the original DML statement, effectively replacing it?
Transact-SQL (T-SQL) — Procedural Extensions in SQL Server 2000 Which language name refers to SQL Server's dialect that adds variables, parameters, IF, WHILE, and other procedural features to standard SQL?
SQL Server Triggers — AFTER Timing What is the SQL Server trigger type that executes only after the referenced INSERT, UPDATE, or DELETE has successfully completed?
SQL Server Cursors — Concurrency Option with Update Locks Which cursor concurrency option places update locks on rows as they are read to prevent concurrent changes?
SQL Server Recovery Models — Logging Behavior Under which recovery model are all changes logged except those operations that would create very large log entries (e.g., bulk operations)?
SQL Server Cursors — Optimistic Concurrency Which cursor concurrency model acquires no locks when reading and waits until update time to check for conflicts?
1
2