Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 SQL Server Administration (2008)
 master.dbo.xp_backup_log in sql2008

Author  Topic 

amirs
Constraint Violating Yak Guru

260 Posts

Posted - 2010-09-20 : 06:07:29
Dear User
I am using sql2008 server .
I will give a backup of database.
i have call following exec

master.dbo.xp_backup_database but the error is could not find store procedure 'master.dbo.xp_backup_database'

please tell me where is the master.dbo.xp_backup_database in sql2008


tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-09-20 : 11:52:30
xp_backup_database is the extended stored procedure used by Quest's SQL Litespeed product to backup a database.

The fact that you don't have it on your database server means you don't have Litespeed installed. Litespeed isn't free.

Have you purchased the product?

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

amirs
Constraint Violating Yak Guru

260 Posts

Posted - 2010-09-21 : 02:31:23
thanks to replay Tara

i have used your new backup sp(isp_Backup) in sql2008. i have excute this sp in following
EXEC [dbo].[isp_Backup]
@path = N'E:\test\',
@dbType = 'User',
@bkpType = TLog,
@retention = 1,
@bkpSwType = 'NV',
@archiveBit = 0,
@copyOnly = 0

In my database to create two other user created database.
but it gives only model database log backup and other database message is Skipping transaction log backup of dbname
so please tell me what is error i have give log backup of all user created database
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-09-21 : 13:40:34
Your recovery model must be SIMPLE if you are getting that message. You can not backup the transaction log of a database using SIMPLE recovery model.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

amirs
Constraint Violating Yak Guru

260 Posts

Posted - 2010-09-22 : 00:12:06
thanks to repaly
yes our database recovery model is simple then i have set full
then it working well....
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-09-22 : 12:40:57
You're welcome, glad to help.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page
   

- Advertisement -