Viewing 15 posts - 1,726 through 1,740 (of 5,394 total)
I suppose that you already have gone through design tuning, SQL tuning and index tuning before deciding to investigate hardware upgrades.
Are you sure there is no place for finding the...
March 13, 2012 at 7:45 am
Service packs are cumulative, so I suppose you will have the same issues as upgrading to SP3 and then SP4.
Take what's in release notes of both SPs and that's your...
March 13, 2012 at 6:13 am
Use a maintenance plan, a custom backup script or Ola Hallengren's backup solution and schedule the backup with SQL Server Agent.
You will also have to schedule a file transfer task...
March 13, 2012 at 5:02 am
Here's an interesting set of articles from Erland Sommarskog's site:
March 13, 2012 at 4:53 am
You're on SQL2008: why don't you use table valued parameters?
March 13, 2012 at 4:07 am
Maybe this can help you:
-- SETUP
IF OBJECT_ID('tempdb..#TMPTABLE') IS NOT NULL
DROP TABLE #TMPTABLE;
CREATE TABLE #TMPTABLE (
entity_item_id int PRIMARY KEY CLUSTERED,
...
March 13, 2012 at 3:56 am
March 13, 2012 at 3:02 am
It's impossible to suggest optimizations without seeing the code.
The part you have to rewrite without triggers is the one you left out and replace with comments:
/* lot of concatenation's and...
March 13, 2012 at 2:57 am
I think the old admin has that list.
Did you check this with him?
March 13, 2012 at 2:39 am
Duplicate post.
Replies here please.
March 13, 2012 at 2:37 am
Elliott Whitlow (3/12/2012)
Lynn Pettis (3/12/2012)
If tempdb is on an SSD drive, why would you want to move it to ram?I would think RAM would be a little faster..
Not sure. With...
March 12, 2012 at 2:51 pm
cheshirefox (3/12/2012)
Technically - we have two data drives.
X: all database files (except TempDB) on a large drive residing on 4 FusionIO cards.
Y: TempDB residing on 2...
March 12, 2012 at 10:23 am
BTW, I found this interesting blog that describes how to move tempdb to a ram disk: http://sqlblog.com/blogs/paul_nielsen/archive/2010/02/15/tempdb-in-ram.aspx
March 12, 2012 at 10:22 am
Weird. Tempd would have been my first candidate for moving to FusionIO.
Is there any particular reason why you didn't put tempdb on FusionIO?
As per your question, theoretically you could create...
March 12, 2012 at 10:18 am
Eugene Elutin (3/12/2012)
... SQL2012 in-build FORMAT, which most likely is implemented in C# anyway.
It is.
In fact, the first time you call it it's slightly slower than subsequent calls,...
March 12, 2012 at 8:08 am
Viewing 15 posts - 1,726 through 1,740 (of 5,394 total)