Viewing 15 posts - 43,231 through 43,245 (of 49,569 total)
tvantonder (11/11/2008)
So I now came to the conclusion that the SQL engin is not that smart and will not create the best execution plan.
The optimiser is quite smart...
November 11, 2008 at 9:33 am
Patrick Russell (11/11/2008)
November 11, 2008 at 9:21 am
The order by should guarantee the order of the identity values, not the physical insert order. I don't have a ref for that right now, just a comment by one...
November 11, 2008 at 2:55 am
sramesh02 (11/11/2008)
Our Sql Server database log file size increasing huge and also not able to shirink database.
What recovery model is the DB in? How often are you doing log...
November 11, 2008 at 1:55 am
Kishore.P (11/11/2008)
run the following DBCC commands:DBCC DBREINDEX
Only if you have several hours of downtime
DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE
Not on a production server unless you want IO and CPU load to sharply increase....
November 11, 2008 at 1:48 am
Order by is ignored in an insert, except for it's effect on the identity columns. Order of data in a table is a meaningless concept. Tables are unordered sets. If...
November 11, 2008 at 1:33 am
Adam Hardy (11/10/2008)
Thanks for the input, but I think you may have miss-read my post, I said I was utilising triggers for data integrity tasks, not business rules.
Same (even...
November 11, 2008 at 1:25 am
BN Phillips (11/10/2008)
November 11, 2008 at 12:34 am
jlp3630 (11/10/2008)
November 11, 2008 at 12:33 am
Marker (11/10/2008)
I ran a dbcc sqlperf(LogSpace) on my database and found that the Log Size is currently 30GB. The Log Space Used is only 13%.
What's the %...
November 11, 2008 at 12:31 am
tvantonder (11/10/2008)
I can not add this. It takes 3 hours and we are a 24hour company.
Why not? If you're using enterprise edition, you should be able to build the index...
November 11, 2008 at 12:29 am
If the difference between the start time and the current time is small, then no. If it's several hours then you need to worry.
First thing, change the log backup frequency...
November 10, 2008 at 12:08 pm
80 MB is not large for TempDB. From the space used, it looks like it's only half used, which is fine. How big can it get?
If TempDB is sized properly...
November 10, 2008 at 12:02 pm
rsmaloo (11/10/2008)
I agree with the point.And can send me the last script u used to restore.
with stop at time...
Lookup Restore Database in Books Online. It will give you all the...
November 10, 2008 at 11:27 am
Viewing 15 posts - 43,231 through 43,245 (of 49,569 total)