Viewing 15 posts - 26,041 through 26,055 (of 26,490 total)
As has been explained in the several other threads you have posted, all that msdb.dbo.sp_start_job does is start a job. It returns...
April 26, 2007 at 1:33 pm
I would use dynamic sql. Build the approriate sql statement(s) as need based on the version of SQL Server that is being used, then execute that script using exec or...
April 26, 2007 at 10:59 am
Not enough information to diagnos the error message on the failed transaction log backup. How is the backup device setup? Is it on a network share? If so, it is...
April 26, 2007 at 10:07 am
Are you missing a transactioon log backup. The original error message you received indicated that there was an earlier transaction log backup than the one you tried to restore.
April 26, 2007 at 10:01 am
That, of course, requires that you Office (Excel) installed on your server. I personally try to keep office of my SQL server systems as much as possible. Using CLR, there...
April 26, 2007 at 9:05 am
The simplest query is:
select * from msdb.dbo.backupset where backup_start_date between <earliest datetime> and <latest datetime>
April 26, 2007 at 9:01 am
What information is available in the msdb.dbo.backupset table for the day in question?
![]()
April 25, 2007 at 7:01 pm
If LineNumber is used, it has to be included with the OrderNumber to make it unique. Also, based on experience, I have worked on some systems written in Fortran and...
April 25, 2007 at 6:59 pm
I started to ask you to explain why the difference, but I just figured it out, the addition in DATEADD is not communitive. 0 + 107 != 107 + 0. ...
April 25, 2007 at 12:45 pm
If you are still have a problem with the restore, have you checked the SQL Logs or msdb.dbo.backupset table to see if there is a missing transaction log backup?
April 25, 2007 at 10:42 am
Look at sys.indexes.
![]()
April 25, 2007 at 10:27 am
Pardon me for this, but I am practicing to be a consultant: It depends. Since you are using an identity field in the OrderDetail table, the LineNumber column could be...
April 25, 2007 at 10:20 am
Viewing 15 posts - 26,041 through 26,055 (of 26,490 total)