Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
--restore to different db
Exec master.dbo.xp_restore_database
@database = 'test',
@filename = 'd:\programs\mssql\backup\litespeed_hr8dev.bak',
@with = 'MOVE "HRPRD_Data" TO "d:\programs\mssql\data\test_DATA.mdf"',
@with = 'MOVE "HRPRD_Log" TO "d:\programs\mssql\data\test_Log.ldf"',
@with = 'NORECOVERY',
@with = 'REPLACE'
Restore db.
Exec master.dbo.xp_restore_database @database = 'lite_test',
@filename = 'd:\programs\mssql\backup\litespeed_hr8dev.bak'
--backup
EXEC master.dbo.xp_backup_database @database = 'HR8DEV',
@filename = 'd:\programs\mssql\backup\litespeed_hr8dev.bal',
@init = 1