Viewing 15 posts - 91 through 105 (of 518 total)
GabyYYZ (11/11/2010)
sturner (11/8/2010)
November 15, 2010 at 1:27 pm
GilaMonster (11/12/2010)
November 15, 2010 at 1:22 pm
All service packs for microsoft products are cumulative - you only need to install the latest one.
That said...Isn't SP4 still in CTP? I wouldn't use that until it's at least...
November 15, 2010 at 8:23 am
I had a relatively new box (a year and a half old by now) running a very heavily hit OLTP system fine for months. All of a sudden performance ground...
November 11, 2010 at 1:00 pm
Tara-1044200 (11/9/2010)
I understand your concern and my database has only 5 tables which are huge and all 5 of them are condidates for compression as i am restoring a 2005...
November 9, 2010 at 9:23 am
Use CHAR(13)
so something like this..
DECLARE @str varchar(50)
SELECT @str = 'I'+CHAR(13)+'LOVE'+CHAR(13)+'SQL SERVER'
PRINT @str
November 8, 2010 at 2:15 pm
Don't run things between 2-3am, or disable it and run it manually the sunday after the time change.
November 8, 2010 at 11:40 am
To re-enable a disabled index, you have to rebuild it using ALTER INDEX REBUILD etc, or just drop it completely (DROP INDEX tablename.indexname)
The reason for needing to rebuild it is...
November 8, 2010 at 11:34 am
george sibbald (11/1/2010)
for what its worth, mine ran fine as scheduled. I have seen some weird negative run times reported, but only under SQL2000.
Crap, I just noticed the same thing...
November 8, 2010 at 11:31 am
Script out a drop/create of all your jobs and recreate them all..that will fix it. Whether or not there's a more elegant solution I'm not really sure.
November 8, 2010 at 11:30 am
Someone on MS Connect posted that reinstalling .net framework 3.5.1 resolved this. I'd give that a shot.
November 8, 2010 at 11:07 am
Declare @Table1 TABLE ( A nvarchar(10))
DECLARE @Table2 TABLE ( X nvarchar(10))
INSERT INTO @Table1
SELECT '123ac45' UNION ALL
SELECT '45ad13' UNION ALL
SELECT 'ac' UNION ALL
SELECT '&34ag'
INSERT INTO @Table2
SELECT 'ad' UNION ALL
SELECT 'ac' UNION...
November 8, 2010 at 10:56 am
Ray K (11/8/2010)
parthi-1705 (11/8/2010)
Thanks. It Worked for me so what is the use of TextQualifier ?whether for this kind of operation it is used or what
What if you have...
November 8, 2010 at 10:50 am
Typically if you're seeing low PLE, it means your cache is being cleared out very frequently. Adding more RAM does absolutely help this, but your underlying problem might still be...
November 8, 2010 at 10:44 am
Viewing 15 posts - 91 through 105 (of 518 total)