Viewing 15 posts - 39,451 through 39,465 (of 49,552 total)
sk.panda (4/28/2009)
Please advise me if you know any exact code compatibilty senario while migrating to sql server 2005.
Did you look at the link that Grant gave?
There are a lot of...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 28, 2009 at 2:28 am
vlad (4/27/2009)
I was hoping for an Index Seek, alas it's a Scan, but Why ??
Because a seek requires a predicate, something to seek on, and neither of your queries has...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 2:53 pm
Mike Baria (4/27/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 2:19 pm
Steve Jones - Editor (4/27/2009)
Prometric and Vue are the testing places.
Is Vue still running the MS exams over in the US? I thought MS dropped them completely a couple years...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:54 pm
Since you know what tables and columns are involved, just do an explicit UPDATE STATISTICS for the tables and the stats that you want to update.
UPDATE STATISTICS <Table Name> <Statistics...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:42 pm
Mike Baria (4/27/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:23 pm
Duplicate post. No replies to this thread please. Direct replies to:http://www.sqlservercentral.com/Forums/Topic705198-150-1.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:16 pm
Look up DBCC DBReindex in the SQL books online.
Please in the future don't use polls for simple questions.
Thanks
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:15 pm
http://msdn.microsoft.com/en-us/library/ms182776(SQL.90).aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:14 pm
You should be able to search for exam centres and book online
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 1:14 pm
Fixes in SP3 - http://support.microsoft.com/?kbid=955706
Fixes in SP2 - http://support.microsoft.com/?kbid=921896
Fixes in SP1 - http://support.microsoft.com/?kbid=913090
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 11:29 am
Also, why a cursor? Unless I've missed something, the entire thing, cursor and all can be replaces by this:
UPDATE t1 SET
t1.Sat = CASE WHEN t2.Day_To_Receive = 'Saturday' THEN 1 ELSE...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 10:55 am
You need some brackets in the exec statement.
Change
EXEC @CMD
to
EXEC (@CMD)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 10:50 am
No.
If you have no backup at all, even the transaction log won't have that information in it as it auto-truncates regularly. Hence no log reader tool will work. There's no...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 10:30 am
Mohit (4/27/2009)
So question, when the plan gets creating using table variables? How long do the plans stay in cache?
Exactly the same as for any other query.
Plan gets created when...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 27, 2009 at 10:20 am
Viewing 15 posts - 39,451 through 39,465 (of 49,552 total)