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.
Yes (see the RESTORE DATABASE command).Can i restore the backup to another database on the server, through code?
RESTORE DATABASE DatabaseName FROM DISK='c:\path\to\file.bak'
RESTORE DATABASE Test FROM DISK='d:\test.bak'
WITH MOVE 'Test_data' TO 'D:\MSSQL\MSSQL\Data\Test.mdf',
MOVE 'Test_Log' to 'E:\MSSQL\MSSQL\Data\Test.ldf',
REPLACE