Viewing 15 posts - 2,146 through 2,160 (of 3,011 total)
You cannot force SQL to execute on shutdown, especially if someone uses SHUTDOWN WITH NOWAIT to force an instant shutdown.
November 25, 2008 at 1:47 pm
Lynn Pettis (11/25/2008)
...Besides, this discussion has remained relatively positive (so far)...
In that case, let me jump in. 😀
There are many opinions of this subject, but I am firmly in the...
November 25, 2008 at 1:34 pm
Michael Valentine Jones (11/21/2008)
marty.seed (11/21/2008)
Sorry, good question. The next SundaySo if I was to pass in todays date I would get 11/23/08
What do you want it to return if today...
November 24, 2008 at 8:25 am
Jeff Moden (11/23/2008)
select [FileSizeMB] = convert(numeric(10,2),round(a.size/128.,2)),
[UsedSpaceMB] = convert(numeric(10,2),round(fileproperty( a.name,'SpaceUsed')/128.,2))...
November 24, 2008 at 8:19 am
This script will tell you the size of every table in a database.
Script to analyze table space usage
November 22, 2008 at 3:23 pm
I don't understand why the OP is even posting his code here.
His failure to answer any of the requests for information on the expected results makes it impossible to offer...
November 22, 2008 at 3:19 pm
SQL_Easy_btn? (11/21/2008)
Here is a really good thread on the topic.http://www.sqlservercentral.com/Forums/Topic558227-146-1.aspx
The thread in that link seems to be about the amount of free space on the drives, not about the amount...
November 21, 2008 at 12:15 pm
marty.seed (11/21/2008)
Sorry, good question. The next SundaySo if I was to pass in todays date I would get 11/23/08
What do you want it to return if today is Sunday, today...
November 21, 2008 at 12:04 pm
dphillips (11/20/2008)
Michael Valentine Jones (11/20/2008)
November 20, 2008 at 1:27 pm
How about telling them the guy who was keeping the records of the backup tapes left years ago, was never replaced, and you don’t have any idea how to find...
November 20, 2008 at 12:20 pm
There are a lot of people that post questions where they don’t even know how to ask the question, can’t make themselves understood in English, probably shouldn’t be working with...
November 19, 2008 at 2:03 pm
The fastest way to get started is to use the Maintenance Plan Wizard.
You should also ready about Backup and Recovery in SQL Server 2005 Books Online.
November 19, 2008 at 11:35 am
The code below has a couple of options you can use:
select
next_run_date,
right(10000000+next_run_time,6) as Time1,
stuff(stuff(right(10000000+next_run_time,6),5,0,':'),3,0,':') as Time2
from
msdb..sysjobschedules
Results:
next_run_date Time1 Time2
------------- ------ --------
20081119 ...
November 18, 2008 at 4:54 pm
Take a look at the stored procedure code I posted on this link. It should meet all the requirements you stated.
Generate Password Procedure
November 14, 2008 at 3:02 pm
Have you verified that the tables that you don't see improvement on have clustered indexes?
November 14, 2008 at 2:54 pm
Viewing 15 posts - 2,146 through 2,160 (of 3,011 total)