Viewing 15 posts - 17,776 through 17,790 (of 18,926 total)
set statistics time on --timers
set statistics io on --disk reads write
May 16, 2005 at 2:40 pm
My version is meant to be used as a UDF. It's much easier to use and versatile that way.
May 16, 2005 at 8:19 am
Select Dept, count(*) as UserPerDepartement, sum(case when Col = 'XP' THEN 1 ELSE 0 END) from dbo.YourTable group by Dept
May 16, 2005 at 7:33 am
Sorry I thaught that the split function was mentioned in that article...
Read this instead :
May 16, 2005 at 6:53 am
won't work either... he's not using dynamic sql :
from today's newsletter :
http://www.sqlservercentral.com/columnists/aGrinberg/thearrayinsqlserver2000.asp
May 16, 2005 at 6:41 am
Basically, a Bookmark lookup is when sql server scans an index to satisfy a where condition, once the index is scanned, it starts retreving the data from the table using...
May 16, 2005 at 6:37 am
where Status = 0x80 and id = object_id('TableName')
May 16, 2005 at 6:31 am
First I would backup msdb as all the packages are saved there.
2nd you could use sqldmo to save all you dts to file just in case you can't transfer msdb...
May 13, 2005 at 1:19 pm
Search the script section on this site for table size and you'll get a few exemples.
May 13, 2005 at 9:36 am
This is what he means :
Select O.Name as TableName, max(I.rowcnt) as Total from dbo.sysindexes I inner join dbo.SysObjects O on i.id = O.id and O.Status >=0 and O.XType =...
May 13, 2005 at 9:08 am
run this in query analyser :
SELECT DISTINCT Op.name AS ParentObject, Oc.name AS ChildObject
FROM dbo.sysdepends D INNER JOIN
...
May 13, 2005 at 9:00 am
Can you use the post method so that the parameters get hidden in the url?
May 13, 2005 at 8:58 am
Viewing 15 posts - 17,776 through 17,790 (of 18,926 total)