Viewing 2 posts - 1 through 2 (of 2 total)
You can also combine step 2 and 3.
You then will get something like this
declare @lastbackupID char(10)
declare @backupname char(255)
-- Find the latest backup of [Production database]
set @lastbackupID = (select max(media_set_id) as...
October 16, 2008 at 5:04 am
#885724
You can find this in the books online section "How to: Install SQL Server 2005 from the Command Prompt "
You can only change the server collation settings if you do...
September 2, 2008 at 8:08 am
#866007