Viewing 15 posts - 31 through 45 (of 266 total)
I would always do a fresh install and then restore the databases. If you do an in place upgrade there is always the chance that something could go wrong during...
April 2, 2019 at 2:23 pm
Developer edition is a full version of SQL Server so it would be equivalent to Enterprise edition in live. You will need to be aware of this whilst testing as...
April 2, 2019 at 2:10 pm
The best way to do this is to restore the user databases, generate scripts for the SQL Agent jobs and use sp_help_revlogin for the users and passwords. Don't try and...
April 1, 2019 at 7:23 am
Yes the transaction log backups will still run during a full backup and will give you a recovery point if the server crashes during the full backup. Obviously you would...
March 29, 2019 at 1:49 am
Try this:alter database [ENR Access DB]
modify file (name='ENR Access DB_log',filename='F:\Database Logs\ENR Access DB_log.LDF')
go
Thanks
March 28, 2019 at 7:00 am
So you say that all other commands work, which alter statements work and which don't?
Thanks
March 28, 2019 at 6:35 am
March 28, 2019 at 3:50 am
Yes that's right, there needs to be a full backup before the log can be backed up.
Thanks
March 21, 2019 at 1:50 am
March 20, 2019 at 3:48 am
March 15, 2019 at 4:53 am
I forgot to add that you can also right click on your database in SSMS --> Tasks --> Generate Scripts and script out all your logins.
Thanks
February 11, 2019 at 2:04 am
You can use sp_help_revlogin. Take a look at the following link for details:
https://support.microsoft.com/en-gb/help/918992/how-to-transfer-logins-and-passwords-between-instances-of-sql-server
Thanks
February 11, 2019 at 2:01 am
It's straightforward to apply a service pack but as Beatrix has said do it on a test environment first. It's very unlikely that a service pack will cause any problems...
February 7, 2019 at 6:59 am
Viewing 15 posts - 31 through 45 (of 266 total)