Viewing 15 posts - 3,136 through 3,150 (of 6,486 total)
Darren Myher (5/28/2008)
Matt Miller (5/28/2008)
Setting the size of the files during the ALTER DATABASE statement will both change the initial size AND shrink the files.
Assuming that you mean the command:
ALTER...
May 28, 2008 at 9:24 pm
Setting the size of the files during the ALTER DATABASE statement will both change the initial size AND shrink the files.
May 28, 2008 at 8:43 pm
You can also just set the initial size lower using the ALTER DATABASE syntax.
As I recall it will do both for you (set the initial size and shrink...
May 28, 2008 at 8:11 pm
Happy to hear, but more importantly - GO BE ON VACATION!
Stop geeking it out with the rest of us shmoes - take the night off or something.....:D
May 28, 2008 at 5:56 pm
Vicki Aversa (5/28/2008)
this dog rolled over a long time ago.
I stopped trying to make sense about 2 years ago. Now,...
May 28, 2008 at 3:23 pm
You're going to want to tap into CLR for this. That custom extended procedure doesn't exist in a SQL Server 2005 install.
May 28, 2008 at 3:00 pm
you'll probably want to set something to walk the clustered index keys. something along the lines of a look that pulls in 100K to 1M rows per shot, walking...
May 28, 2008 at 2:58 pm
What's the data types of these columns?
TalkTime + HoldTime + WrapTime + WaitTime + PreviewTime + DeadTime
May 28, 2008 at 2:26 pm
May 28, 2008 at 2:17 pm
or - you add it back into a datetime. Then use whatever date/time format suits you.
DECLARE @Time DateTime
SET @time = GETDATE()
[MY QUERY]
PRINT dateadd(ms,DATEDIFF(ms,@time, GETDATE()),0)
May 28, 2008 at 2:13 pm
By default - DAC is only enabled on local connections. You can change that in the Surface Area Configuration Manager (enable remote DAC = True).
From BOL:
By default, the connection...
May 28, 2008 at 2:01 pm
Yup - messed up the field to count. Too much copying and pasting.
Essentially:
- the first two tables (questions/answers) help establish all of the possible choices. Meaning - the answers...
May 28, 2008 at 1:50 pm
I'm not sure why you'd need some fancy instantiating the AV app.
If you can live with a short delay, we stayed simpler:
- Upon getting a request like...
May 28, 2008 at 1:39 pm
All right then - let's try flipping this around a bit:
SELECT C.AnswerText, COUNT(C.AnswerValue) AS 'Count'
FROM
dbo.SurveyQuestions AS Q...
May 28, 2008 at 1:20 pm
ahutch (5/28/2008)
No, you can't set AutoShrink in TempDB.
And thank goodness for that. That would be a performance disaster. You don't want to do that IMO.
May 28, 2008 at 1:07 pm
Viewing 15 posts - 3,136 through 3,150 (of 6,486 total)