Viewing 15 posts - 1,096 through 1,110 (of 1,165 total)
If you created the db with restore database command... you can check the last backup inforamtion info in task pad...or by running the query in msdb...
select top 1 * from msdb..backupset
where...
December 5, 2006 at 10:44 am
Most of the time MS will not publish the undocumented details, so you don't find any info from MS.
December 5, 2006 at 10:33 am
December 4, 2006 at 10:58 pm
I read DBCC PSS is still available (undocumented)
But It is not working for me too
December 4, 2006 at 9:11 pm
Then qualify the errored table with server name.
remoteservername.distribution.dbo.tablename...
December 4, 2006 at 9:02 pm
Here is the script...
Declare @BytesUsed Varchar(1000),
@BytesFree Varchar(1000),
@TotalBytes BIGINT,
@IDENTITY INT,
@Drive Char(1),
@sql Varchar(1000)
SET NOCOUNT ON
Create table ##DiskSpace ( Drive Char(1), TotalSpace Bigint, FreeSpace Bigint,
PercentageFree as (FreeSpace*100 / TotalSpace )...
December 4, 2006 at 8:58 pm
Use textdata filter as '%tablename%'
or
You can run the query against syscomments table which will give you table used by procs, triggers and views used..
select distinct object_name(id) from syscomments
where text...
December 4, 2006 at 7:54 pm
Recycling resolve the issue means, it could be related to cached query plan. Instead of recycle try to recompile the underlying procedure for the job OR alter the procedure to...
December 4, 2006 at 7:49 pm
Open your format file and change it to 80 and try it.
December 4, 2006 at 5:15 pm
It is advisable to run the backup to disk and then backup the backup file to the tape.
This way incase you need the backup it is ready on the disk...
December 4, 2006 at 5:11 pm
I don't think there is way to schedule every three days using nt scheduler...
December 4, 2006 at 5:06 pm
There is no procedure to get the total space of local drives where as you can get free space available info by running master.dbo.xp-fixeddrives procedure.
December 4, 2006 at 5:04 pm
select * from orginating_server where job_id = ''
If Orginating_server name is the master server name from where job originated...
December 4, 2006 at 4:55 pm
You have to write a batch file using NET START and NET STOP commands..
December 4, 2006 at 3:37 pm
ERwin and ERStudio tools.
I don't know the pricing.
December 4, 2006 at 3:17 pm
Viewing 15 posts - 1,096 through 1,110 (of 1,165 total)