Viewing 7 posts - 1 through 7 (of 7 total)
I just want to add some more stuff:
1) For SQL Server 2005 you should use sys.sql_modules. It returns just one row for each SP (not like syscomments), which makes the...
September 27, 2009 at 6:59 pm
Great news that SQL Server is moving forward. I have not heard about R2.
IMHO, because of the global financial cricis, enterprises are reducing expences, so there is no rush for...
September 2, 2009 at 7:28 pm
The code is nice, but it actually shows only the records from the last trace file (SQL Srv 2005 Ent , SP2 and SP3).
select * from sys.traces
- returns...
February 9, 2009 at 4:42 pm
Clustered indexes causes page splits, and columns from it are included into any other index, so it adds overhead.
October 16, 2008 at 5:44 am
Maybe use all of this:
1) checkpoint
2) dbcc dropcleanbuffers
3) dbcc freeproccache
4) dbcc freesystemcache('all')
(The last one N4 probably is the same as N2 + N3).
Using tests for the whole TB database...
September 4, 2008 at 9:13 pm
What about reducing total memory size available to Windows by changing boot.ini:
"MAXMEM=
Limits Windows to ignore (not use) physical memory beyond the amount indicated. The number is interpreted in megabytes. Example:...
September 1, 2008 at 7:51 pm
If you want speed, try this. It minimises the number of comparissons - it should be quicker than the others.
SELECT @boo =
( CASE...
October 29, 2007 at 5:38 am
Viewing 7 posts - 1 through 7 (of 7 total)