Viewing 15 posts - 76 through 90 (of 3,010 total)
Jeff Moden (6/13/2014)
June 13, 2014 at 11:57 am
sqldriver (6/5/2014)
June 6, 2014 at 12:11 am
Sean Lange (6/5/2014)
June 5, 2014 at 11:25 pm
Following some standard formatting is important, especially if it it used by all developers for an application
I prefer this style with key words in lower case, but that comes from...
June 5, 2014 at 12:10 am
Like everything else, it is a business decision.
Does it lower costs?
Does it increase revenue?
Is it easier to manage?
Is there majors risks associated with either doing nothing or moving to the...
May 23, 2014 at 10:43 am
It may not still be the case in current versions of SQL Server, but I thought that was a limit of 255 tables in a query, including tables referenced in...
May 20, 2014 at 9:27 am
In general, converting the local times to UTC times is the way to solve the problem.
The real problem is converting the local time to UTC time. It will probably...
May 20, 2014 at 9:13 am
Jake Shelton (5/8/2014)
Previously I've ran scheduled jobs that backed up and shuffled the .bak files across, but is it possible for a scheduled task on Server 1, to...
May 8, 2014 at 11:35 pm
Jeff Moden (5/6/2014)
ScottPletcher (5/6/2014)
May 6, 2014 at 2:57 pm
This will log deadlock info to the SQL Server error log:
print 'Set on Trace Flag 1222 to log deadlocks'
dbcc traceon(1222,-1)
print 'Show all trace flags that are on'
dbcc tracestatus(-1) with no_infomsgs
May 5, 2014 at 8:41 am
Depending on the action (backups, transaction log writes, etc.), SQL Server has several different types of IO sizes, so it is worth testing different block sizes.
I test with block sizes...
May 2, 2014 at 11:10 pm
Michael Valentine Jones (5/2/2014)
akhamoshioke (5/2/2014)
or
Take log backups every 15 or 30...
May 2, 2014 at 10:48 pm
akhamoshioke (5/2/2014)
...Take daily differentials (That way, you can do a restore with stop at if you need to do point-in-time recovery...
You need to use log backups, not differential backups, for...
May 2, 2014 at 10:44 pm
jagat.patel (4/1/2014)
Now when i tried to delete one record in this table it takes...
May 2, 2014 at 10:28 pm
Have you tried using the ONLINE = ON option in your index creation statement?
April 29, 2014 at 1:50 pm
Viewing 15 posts - 76 through 90 (of 3,010 total)