Viewing 15 posts - 316 through 330 (of 395 total)
Something strange. It does indeed create a new file for all jobs I got. But it also adds another another jobs to the same file. What could be the case?
February 8, 2005 at 3:03 pm
While backup time and size using Litespeed is cut considerably, restore time is about the same as for the native restore. I would be cautios (do a lot of testing...
February 3, 2005 at 12:41 pm
run sp_who2; and see if there is blocking or old connection....
February 3, 2005 at 12:30 pm
Check also all available disk space. (It is nice to have a stored proc which monitores disk space accross all servers). On one of my servers, where tempdb is on...
February 2, 2005 at 12:08 pm
select db, usr, count(*) as processes from
( select sp.loginame as usr, sd.name as db
from sysprocesses sp join sysdatabases sd on sp.dbid = sd.dbid ) as db_usage
where db like('%')
group by...
January 30, 2005 at 2:44 pm
Not exactly.
You could run :
EXEC master..xp_servicecontrol 'QueryState', 'SQLServerAgent' and then capture the result in temp table; and based on a response run a job. The only problem you might...
January 30, 2005 at 10:28 am
Can it be the case that your logic requires to use a lot of temp tables? Make sure they are being dropped at the end of the stored proc. Also...
January 28, 2005 at 12:42 pm
Can't you just create a job, with DBCC CHECKDB('MYDB')?
Make sure you create and output txt file to capture the output (on Advanced Tab)
January 20, 2005 at 12:06 pm
use xp_servicecontrol.
January 16, 2005 at 12:13 am
as an alternative you can specify in the job step:Advanced->Output File(create output file on the local drive) with Overwite or Append. It saves all output (which you see in QA)...
January 13, 2005 at 3:24 pm
Thanks Guys.
Yes Mike, if you can send me details....
January 13, 2005 at 9:09 am
The way we handle it:
You should have a list of servers stored in table (and a separate table for DBs going against servrid) in standalone db on a master server....
January 12, 2005 at 12:40 pm
"I've tried log shipping, but the size of the logfiles it creates is very large (>1gb), and takes a while to copy over to the secondary server, causing a large...
January 11, 2005 at 3:56 pm
I have a problem with "If someone gets in and screws things up accidentally, or does it on purpose not caring if he gets caught.."
To prevent things to happen accidently,...
January 7, 2005 at 10:52 pm
Viewing 15 posts - 316 through 330 (of 395 total)