Viewing 15 posts - 166 through 180 (of 3,011 total)
You should run a complete suite of SQLIO tests on the current and new servers and compare the results. Sequential read, sequential write, random read, and random write at...
September 11, 2013 at 1:23 pm
GilaMonster (9/11/2013)
Grant Fritchey (9/11/2013)
Disable the 'sa' login completely and rely on AD logins to manage all the servers.This.
Yes, but you should still set a strong SA password, and make sure...
September 11, 2013 at 1:06 pm
I doubt that having a clustered index on the identity column is the cause of the deadlocks.
You need to analyze the deadlock information in detail to determine exactly what resource...
September 9, 2013 at 9:35 am
Copying an 80 GB compressed backup to the cloud using an 8 Mbit/Sec upload speed would take at least 28 hours, so I don't see that being practical at least...
September 9, 2013 at 9:31 am
Sean Lange (9/6/2013)
Michael Valentine Jones (9/6/2013)
September 6, 2013 at 1:08 pm
It might be more valuable if you explained the implications of changing the default database, and especially the disadvantages of having a default database that is not master for an...
September 6, 2013 at 11:25 am
It is only meant to be used for very short term storage of the data, maybe 2-3 days.
I believe the default retention is 3 days.
September 5, 2013 at 1:53 pm
Eastern Daylight Time (EDT) is UTC (GMT) -4 hours
Eastern Standard Time (EST) is UTC (GMT) -5 hours
You should be able to find all the information you need here:
Daylight Saving...
September 3, 2013 at 11:54 am
Sanz (8/21/2013)
August 21, 2013 at 3:14 pm
Scott Milburn (2/27/2013)
August 20, 2013 at 3:12 pm
ScottPletcher (8/20/2013)
Michael Valentine Jones (8/20/2013)
taigovinda (8/20/2013)
My database has a bunch of tables on it that have no indexes at all on them. I want to add indexes to these...
August 20, 2013 at 3:05 pm
taigovinda (8/20/2013)
My database has a bunch of tables on it that have no indexes at all on them. I want to add indexes to these tables but I am...
August 20, 2013 at 9:50 am
This also works:
select
Curr_Datetime= getdate(),
[Curr_Datetime Plus 05:25] =getdate()+'05:25:00.000'
Results:
Curr_Datetime Curr_Datetime Plus 05:25
----------------------- ------------------------
2013-08-09 14:52:58.457 2013-08-09 20:17:58.457
August 9, 2013 at 12:54 pm
Jeff Moden (8/8/2013)
Koen Verbeeck (8/8/2013)
Sean Lange (8/8/2013)
Koen Verbeeck (8/8/2013)
Jeff Moden (8/8/2013)
It doesn't? I just called the article up and here's the Prologue that I "remembered" adding to the article.
Hmmm,...
August 9, 2013 at 8:28 am
Works as expected for me.
BEGIN TRAN
BEGIN TRY
create table #temptable
( n1 int not null, n2 int not null,...
August 8, 2013 at 10:06 pm
Viewing 15 posts - 166 through 180 (of 3,011 total)