Viewing 15 posts - 13,081 through 13,095 (of 49,552 total)
Normal, expected, documented behaviour. If SQL's using too much memory, you need to change the max server memory setting to tell it how much it may use.
May 21, 2013 at 4:24 am
Work through the procedures, see if you can rewrite them not to use cursors and temp tables.
May 21, 2013 at 2:54 am
Btw, watch those nolocks.
See - http://blogs.msdn.com/b/davidlean/archive/2009/04/06/sql-server-nolock-hint-other-poor-ideas.aspx
May 21, 2013 at 2:41 am
shohelr2003 (5/21/2013)
1.If I delete log backup files after taking a full backup, would it create any problem while data recovery?
Maybe. Means that if the latest full backup is corrupt or...
May 21, 2013 at 2:41 am
What are you using a table variable for? There's no need for table variable, temp table or cursor that I can see here.
May 21, 2013 at 2:37 am
terry999 (5/20/2013)
I've not used disable before but read somewhere that it doesn't use the disk space up that a drop and recreate does.
It will use the same disk space, disable's...
May 20, 2013 at 5:50 pm
You need to close the query window from which you ran the truncate (or change the database context to some other database). It's not that truncate is holding any exclusive...
May 20, 2013 at 4:41 pm
Doesn't matter whether it's one drive or multiple in a RAID array, my answers stand. You may or may not get a performance improvement from splitting files onto multiple independent...
May 20, 2013 at 2:12 pm
Sean Lange (5/20/2013)
Lynn Pettis (5/20/2013)
Sean Lange (5/20/2013)
May 20, 2013 at 2:07 pm
That doesn't actually start a transaction, and you can prove it by running that in one management studio window and running DBCC OPENTRAN in another.
The transaction will only start...
May 20, 2013 at 1:38 pm
Deny them insert, update and delete on all tables in the database. Only way since all data modifications run in transactions
May 20, 2013 at 1:29 pm
Bear in mind that if you disable the indexes you need to rebuild them afterwards. Unless you're doing a huge amount of inserts/updates, the cost of the rebuild (and logging...
May 20, 2013 at 11:08 am
Please note: 3 year old thread that was not about mirroring.
May 20, 2013 at 11:06 am
IgorMi (5/20/2013)
More files is good when they are on different drives.
Maybe
And will it bring performance gain when on one drive?
No.
May 20, 2013 at 10:17 am
Viewing 15 posts - 13,081 through 13,095 (of 49,552 total)