The LiteSpeed core (or engine) is installed on a server, without the client. How to recover or restore a table, using LiteSpeed OLR ?
WORKAROUND1:
via tsql --
exec xp_objectrecovery
@FileName = N'D:\Backup\Full_2011-08-07-121646.bak',
@FileNumber = 1,
@ObjectName = N'dbo.Objectname',
@DestinationTable = N'new_objectname',
@DestinationDatabase = N'database_name',
@DestinationServer = N'server_name\instance_name'
WORKAROUND2:
via command line:
Browse to the folder where the OLR exe is locates.
>...\Engine\OLRx32.exe -F D:\Backup\Full_2011-08-07-121646.bak -N 1 -O dbo.objectname -T new_objectname -S database_name -E sedrvername\instance_name -R1
© 2021 Quest Software Inc. ALL RIGHTS RESERVED. Feedback Terms of Use Privacy