Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising

sql server innRoad INterview Questions

1. What is index reorganization? ​2. How sql engine knows which index has to be used while dealing with indexed views? 3. How to prevent bad parameter sniffing? What exactly it means? 4. What dll file that handle the transaction logs in logshipping? 5....

Read more

Advertising

What database objects are stored in tempdb

What database objects are stored in tempdb? Ans: There are three different types of objects stored in tempdb. Internal Objects: Intermediate runs for sort. Intermediate results for hash join and hash aggregates. XML variables or other large object (LOB)...

Read more

Performance Tuning

Performance Tuning – SQL Server Part – 1 Q. What are the bottlenecks that effects the performance of a Database / Application Ans: The top performance bottlenecks for OLTP applications are outlined as: Database Design \ Database Code Application Design...

Read more

Performance Tuning – SQL Server Part -2 –

Performance Tuning – SQL Server Part -2 – Q. What are the primary differences between an index reorganization and an index rebuild? Ans: Reorganization is an “online” operation by default; a rebuild is an “offline” operation by default Reorganization...

Read more

Advertising

Can you briefly describe about EXTENT?

Can you briefly describe about EXTENT? Ans: An extent is eight physically contiguous pages, or 64 KB means 16 Extents= 1 MB. There are two types of Extents. Uniform Extents and Mixed Extents. Uniform extents are owned by a single object; Mixed extents...

Read more

LOG file architecture?

“Transactionlog” Logical Architecture: Each log record is identified by a unique number called LSN (Log Sequence Number). A log record contains the LSN, TransactionID to which it belongs and data modification record. Data modification record: It’s either...

Read more

Advertising

What is “Write Ahead Transaction Log”?

What is “Write Ahead Transaction Log”? Ans: SQL Server uses a write-ahead log (WAL), which guarantees that no data modifications are written to disk before the associated log record is written to disk. Data modifications are not made directly to disk,...

Read more

<< < 10 20 30 31 32 33 34 35 36 37 38 39 40 > >>