saqdotnet
Thursday, April 25, 2013
get Transaction Log size SQL Server 2008
Here is quick way to get Transaction Log size
DBCC SQLPERF(LOGSPACE)
Wednesday, April 10, 2013
Generate Row number
This method will only work when you do "select into
from
"
Syntax is :
select identity(int,1,1) as RowNumber, *
into newtable
from oldtable
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)