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
 General SQL Server Forums
 New to SQL Server Administration
 Lite speed commands for Diff backup

Author  Topic 

sunsanvin
Master Smack Fu Yak Hacker

1274 Posts

Posted - 2010-03-04 : 01:48:51
Hi,
with the below query, we can take the full backup. but how can i take the Diff abckup with lite speed commands? please guide me

exec master.dbo.xp_backup_database
@database = 'abcd',
@filename = 'D:\data\data_srv\dbagroup\sqldba\abcLiteSpeed_Full.BKP',


Arnav
Even you learn 1%, Learn it with 100% confidence.

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2010-03-04 : 07:22:53
And would this request be more appropriate/successful if posted on the LifeSpeed support website itself?
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-03-04 : 13:07:50
For Litespeed, you specify the differential backup by passing "DIFFERENTIAL" to the WITH option. This is shown in the Litespeed documentation.

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

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page
   

- Advertisement -