Viewing 15 posts - 136 through 150 (of 447 total)
I know option would be between 1 and 2 as I joined SSC in 2003. It's been the best place to learn SQL Server and I follow each and...
September 11, 2009 at 9:59 am
If executed with result in text then you see space after , . But, if result set in grid it does not show space with copy and paste result set...
September 10, 2009 at 9:00 am
That's the good thing about Microsoft product, is that they mostly get fixed by a reboot, unlike Suse or RedHat.
September 8, 2009 at 2:57 pm
Even I would follow the steps given by sturner. Else use DBCC INDEXDEFRAG which is online but I would prefer DBCC DBREINDEX.
September 8, 2009 at 2:54 pm
But, On SQL Server 2005 sp2 I see table scan in both query 1 and query 4 in execution plan.
I think I had to go through all the discussion to...
September 8, 2009 at 11:07 am
Though I selected " 0 " as answer but still not sure about @@error.
September 3, 2009 at 10:15 am
Mark Horninger (8/26/2009)
Clever question, not sure why/how I'd ever use the concept though. Good trivia?
Exactly. Good Trivia. But never came across a procedure which uses it, neither...
August 26, 2009 at 9:12 am
Try this.
select o.name as "Table Name",i.rowcnt as "Row_Count"
from sysobjects o, sysindexes i
where i.id = o.id
and indid in(0,1) and o.name not like 'sys%' and o.name not like 'dt%' and i.rowcnt ...
August 21, 2009 at 11:45 am
Your question is too vague. But do consider to check indexes fragmentation on the tables this job is using and fix it with dbcc dbreindex ('table_name','', %(you want to...
August 21, 2009 at 7:45 am
Follow instructions from this url.
http://msdn.microsoft.com/en-us/library/aa173515(SQL.80).aspx
August 21, 2009 at 7:40 am
If you already had 2005 certification then most probably just write one paper 70-453 and you get MCIPT. In Database Administration though, which I cleared last year.
I am far...
August 21, 2009 at 7:38 am
So what's the correct method ? ANSI_NULLS should be ON or OFF ? By default I set it to ON on all distributed queries and when creating store...
August 13, 2009 at 11:50 am
Good info. Still reeling under 2005 and only got couple of Dev servers in 2008. But it's good to know info before in time.
August 13, 2009 at 11:38 am
Easy. Maybe because I rebuild master yesterday night on a dev server.
August 11, 2009 at 10:46 am
LP (8/10/2009)
jonwolds (8/10/2009)
Some points in this article no longer apply, some are mis-leading and some are just incorrect. Please read with caution.
Absolutely agreed. Very dangerous article espesially for newbees. Better...
August 10, 2009 at 12:58 pm
Viewing 15 posts - 136 through 150 (of 447 total)