Viewing 15 posts - 76 through 90 (of 308 total)
I don't use a lot of custom settings but one thing I do is to set my default isolation level to read uncommitted
January 23, 2015 at 3:22 am
Have a look at this post:-
http://www.sqlservercentral.com/Forums/Topic883566-357-1.aspx
The first reply by GilaMonster should explain
January 22, 2015 at 5:53 am
Here's a survey performed by SQL SKills on Tempdb configuration.
http://www.sqlskills.com/blogs/paul/tempdb-configuration-survey-results-and-advice/
It's also got some good advice on what configuration you should use
January 22, 2015 at 5:46 am
Your diff backup will contain all the changes made since the last full backup. So it's recording all the maintenance changes that have been made whilst performing your index rebuilds.
The...
January 22, 2015 at 5:42 am
Have a look at this script:-
CREATE TABLE #TableSize
([Name]VARCHAR(255),
[rows]INT,
[Reserved]VARCHAR(255),
[Data]VARCHAR(255),
[Index Size]VARCHAR(255),
[Unused]VARCHAR(255));
CREATE TABLE #ConvertedSizes
([Name]VARCHAR(255),
[Rows]INT,
[Reserved (KB)]INT,
[Data (KB)]INT,
[Index Size (KB)]INT,
[Unused (KB)]INT);
EXEC sp_MSforeachtable @Command1="insert...
December 11, 2014 at 7:30 am
Hmm, I'm wondering if the free space is actually free space within existing objects. Does the database have data bulk inserted and then removed often?
December 11, 2014 at 7:21 am
Is there only the one filegroup (PRIMARY) in the database?
December 11, 2014 at 6:28 am
Hi,
I would have thought that if you are using tempdb heavily, placing it on a faster IO subsystem would improve performance. But how much? I can't really say, do...
December 2, 2014 at 2:07 am
December 1, 2014 at 6:30 am
BWFC (11/27/2014)
It's a 2008 forum so I took a guess on that 😉
D'oh :pinch:
November 27, 2014 at 4:49 am
BWFC (11/27/2014)
selectt1.id
,t1.timestamp
,t2.timestamp
,TimeTaken = cast(datediff(second,t1.timestamp,t2.timestamp)/3600 as varchar)+':'
+right('0'+cast(datediff(second,t1.timestamp,t2.timestamp)/60 %60 as varchar),2)+':'
+right('0'+cast(datediff(second,t1.timestamp,t2.timestamp) %60 as varchar),2)
from dbo.runningtime t1
left join dbo.runningtime t2 on t2.id = t1.id+1
Here's another attempt.
@dba-2 From The Cold, I don't mean...
November 27, 2014 at 4:28 am
Here's a bit of code to get you started:-
SELECT
ID,
TimeStamp,
LAG(TimeStamp,1) OVER (ORDER BY ID DESC),
...
November 27, 2014 at 3:31 am
How about polling the sys.databases table (via a SQL Server Agent job) and checking the create_date column based on a specified time frame.
You could then backup any databases that are...
November 27, 2014 at 2:44 am
An in-place upgrade is where you upgrade the existing SQL Server instance running on your server. A side-by-side upgrade is where you build a new server, install a later version...
November 27, 2014 at 2:42 am
Viewing 15 posts - 76 through 90 (of 308 total)