#MS SQL SERVER, #PERFORMANCE TUNING What is Spool Operator in SQL Server: SQL Server Performance Tuning Spool operator scans the input and places a copy of each row in a hidden spool table that is stored in the tempdb database and existing only for the 11:27 Share
#PERFORMANCE TUNING, #SQL SERVER PERFORMANCE TUNING INTERVIEW QUESTIONS What do you understand by Column Density in SQL Server? Density in SQL Server: Density, when used to describe the data in a column, is a measure of how often duplicate values occur in that column. Another w 00:04 Share
#HCL SQL SERVER INTERVIEW QUESTION, #INDEX Will Non-Clustered Index used every time by SQL Server Engine? HCL/Unitedhealth Group Note: Don't be confuse by GO 999990 keyword in below query (just used for insert multiple records)... if you have no idea about this then must re 22:58 Share
#MS SQL SERVER, #PERFORMANCE TUNING SQL Server Lock Modes Depending on the type of access requested, SQL Server uses different lock modes while locking resources: • Shared (S) • Update (U) • Exclusive (X) • 22:21 Share
#MS SQL SERVER, #PERFORMANCE TUNING How you will filter the user sessions only? The following query will only return user sessions and will filter out the internal system sessions: SELECT * FROM sys.dm_exec_sessions WHERE is_user 22:19 Share
#MS SQL SERVER, #PERFORMANCE TUNING How you will get the sessions detail, in SQL Server(performance tuning)? We can easily access session detail by querying the sys.dm_exec_sessions DMV using the following query: SELECT * FROM sys.dm_exec_sessions; 22:18 Share
#MS SQL SERVER, #PERFORMANCE TUNING SQL Server Lock Implementation Levels SQL Server implements lock granularities at the following resource levels and in this order: Row (RID) Key (KEY) Page (PAG) Extent (EXT) Heap or B-tree (H 22:17 Share
#MS SQL SERVER, #PERFORMANCE TUNING Best practice of creating index for performance tuning SQL Server Best practice of creating index for performance tuning. Create indexes on the frequently used columns in the WHERE clause and the JOIN criteria of a S 22:15 Share
#MS SQL SERVER, #SQL INTERVIEW TOP 14 SQL SERVER PERFORMANCE TUNING INTERVIEW QUESTIONS PDF FOR EXPERIENCED SQL SERVER PERFORMANCE TUNING INTERVIEW QUESTIONS PDF FOR EXPERIENCED 1). What is SQL Profiler? Ans: Microsoft SQL Server Profiler is a rich graphical 00:18 4 Share