Viewing 15 posts - 2,386 through 2,400 (of 3,008 total)
Use the DBCC SHRINKFILE command.
You can look it up in SQL Server Books Online.
April 3, 2008 at 9:02 am
Use the SET DATEFIRST command.
You can look it up in SQL Server Books Online.
April 3, 2008 at 8:59 am
So how do you do this with people that work remotely or if you work remotely?
April 3, 2008 at 8:41 am
You can query the msdb sysjob* tables to get this information.
April 2, 2008 at 11:50 am
You need to start by providing a good definition of how the week of the year is determined.
Week of the year is something that has different definitions in different organizations.
April 2, 2008 at 11:35 am
Your objections to the scripts SQL Server produces seem trivial, and more a matter of personal choice than any actual problem with them.
I have never had any problems running the...
April 1, 2008 at 3:23 pm
There isn't very much that runs when, for example, the server loses power.
You really need a monitoring tool running on another server. You might check into HP OpenView or...
April 1, 2008 at 3:06 pm
I don't see anything wrong with the first script, and it ran clean for me.
I don't really like your script, since you are letting SQL Server name a database object...
April 1, 2008 at 2:31 pm
You can pick the data from this query that you need.
select
a.*,
b.*
from
msdb.dbo.backupset a
join
msdb.dbo.backupmediafamily b
on a.media_set_id = b.media_set_id
April 1, 2008 at 1:47 pm
Where is this script going to be running when the server is down?
April 1, 2008 at 1:37 pm
select
LastDayOfMonth = dateadd(month,((yr-1900)*12)+mn,-1)
from
(
--Test Data
select yr=2008,mn=1 union all
select yr=2008,mn=2 union all
select yr=2008,mn=3 union all
select yr=2008,mn=4 union all
select yr=2008,mn=5 union all
select yr=2008,mn=6 union all
select yr=2008,mn=7 union all
select yr=2008,mn=8 union all
select yr=2008,mn=9 union...
April 1, 2008 at 9:39 am
I started night school with one year of full time school completed, so I was able to finish in 4 years by taking 8 classes per year, 3 each in...
March 31, 2008 at 10:07 am
There are places that will not consider someone without a bachelor’s degree because a high school diploma is no longer sufficient to demonstrate the most basic of job skills, the...
March 31, 2008 at 9:22 am
If you have a whole week to get if from LA to SF, back it up on tape in LA, ship the tape to SF overnight express, and restore it...
March 26, 2008 at 3:01 pm
Adam Bean (3/24/2008)
That works, thank you ... but can anyone explain why mine does not? It works perfect in 2005 ... this is driving me insane.
You made it too complex....
March 24, 2008 at 3:28 pm
Viewing 15 posts - 2,386 through 2,400 (of 3,008 total)