Viewing 15 posts - 346 through 360 (of 469 total)
Stop and restart the job. Make sure that Full and or Diff backup jobs are not running while you are attempting to run this transaction log backup job..
Thansk!!
November 7, 2008 at 8:34 am
Ok- while using the Wizard, the first step should prompt you to specify the location of the backup. Specify 'to disk' and then add the disk you want the database...
November 7, 2008 at 8:31 am
We use SQL Litespeed 2005 version 4.8 from Quest Software. It supports different levels of compression of your backup file, encryption and also Object level recovery...and above all is easy...
November 7, 2008 at 8:29 am
Look below for the difference in the way you use the dbcc showcontig command
--DBCC SHOWCONTIG(TABLE_PROD_RES)
DBCC SHOWCONTIG scanning 'TABLE_PROD_RES' table...
Table: 'TABLE_PROD_RES' (1241211622); index ID: 1, database ID: 5
TABLE level scan...
November 7, 2008 at 8:17 am
try to query the system tables like dbo.backupfile and dbo.backupset on the msdb database.
Thanks!!
November 6, 2008 at 1:44 pm
Is the rowcount on the primary table consistent? Try to create the temp table without the identity key and see for the number of rows, I guess it will be...
November 6, 2008 at 1:42 pm
I ran the above statements you mentioned before running the jobs. I am not sure if I was able to view the job properties before enabling the above procedures. Do...
November 6, 2008 at 1:26 pm
1.Create the mirror database by restoring with NORECOVERY a recent full backup available of the principal database (in your case the production database). The mirror database must have the same...
November 6, 2008 at 1:23 pm
use this : DBCC SHOWCONTIG(tablename)
In the results check for the logical scan fragmentation, which ideally should be 0.01%
Thanks!!
November 6, 2008 at 1:13 pm
Any views will be appreciated..Thanks!!
November 6, 2008 at 1:11 pm
Why don't you try this for updating the statistics
UPDATE STATISTICS DaveTable(anames)
WITH FULLSCAN, NORECOMPUTE
GO
Thanks!!
November 6, 2008 at 8:33 am
How long does it take to run this job? Determine the time when there are least number of jobs running, then schedule this job. As you have tried already. Discuss...
November 6, 2008 at 8:28 am
Also try Network Data Mover, this was used by a colleague of mine to rebuild a crashed server :w00t: .They pulled all the files overnight 😎
November 6, 2008 at 7:55 am
Include all the stored procs that you would use in the maintenance jobs and the once with notification too. Simple recovery would be enough and if you don't update it...
November 6, 2008 at 7:51 am
Viewing 15 posts - 346 through 360 (of 469 total)