I trying the find a way to hook this SQL script into .Net code. The script will prompt the users the insert a USB drive into Drive D:\ and then proceed to back myDatabase. Can anyone help me convert this into .Net Code?
--Create a differential database backup.
BACKUP DATABASE eFB TO DISK = 'F:\EFB\EFBSave.bak'
WITH DIFFERENTIAL;
Thanks in advance.
--Create a differential database backup.
BACKUP DATABASE eFB TO DISK = 'F:\EFB\EFBSave.bak'
WITH DIFFERENTIAL;
Thanks in advance.