Agile FAQs
  About   Slides   Home  

 
Managed Chaos
Naresh Jain's Random Thoughts on Software Development and Adventure Sports
     
`
 
RSS Feed

Recent Thoughts
Tags
Recent Comments

Archive for the ‘Database’ Category

How to create a Temp Table in SQL Server using an EXEC statement?

Monday, January 10th, 2005

What happens when you try the following inside a SQL Server Strored Procedure?

EXEC (‘CREATE TABLE #TEMPTABLE‘+‘123‘+‘(firstColumn varchar(10), secondColumn varchar(20), thridColumn int)‘)
INSERT INTO …

Truncating Transaction Log in SQL Server

Monday, January 10th, 2005

What does the transaction log contain?
Transaction log contains log records which are necessary for recovering or restoring a database.

What happens if these log records were never deleted from the transaction log?
Every transaction log has a fixed size….

    Licensed under
Creative Commons License