3.2 -> 4.0 Upgrade Problems
appwright
Posts: 62
I upgraded from 3.2 to 4.0 and SQL Backup stopped working as seen in other posts. Got the "Could not load dll" error.
I run SQL 2K on an instance and noticed in this post:
http://www.red-gate.com/messageboard/vi ... php?t=1780
that SQL Backup does not install on instances!! What's up with that?!?!
Anyway, I followed those instructions in the post and it is now running from what I can tell.
I do have one other problem. The little info window in the GUI says that I am on a 14 day trial however I have a full license and support agreement and was told I would get this update for free. I have emailed support on this topic, hopefully they will take care of it.
[UPDATE] - It seems I needed to activate the product again as it lost my registration? Anyway - as soon as I activated, it immediately locked up the GUI and I had to kill it. HOWEVER, my key will not work on the Log Rescue so I'm still not complete yet.
Another issue - the GUI crashes on exit or locks up. I think this 4.0 release is bit half baked! :? This is a database server product guys - mission critical stuff. No room for issues like this!!!
Please, Red-Gate, make these installs cleaner!! Also, let me know if there are any tests I can run that can verify I have a fully clean install.
I run SQL 2K on an instance and noticed in this post:
http://www.red-gate.com/messageboard/vi ... php?t=1780
that SQL Backup does not install on instances!! What's up with that?!?!
Anyway, I followed those instructions in the post and it is now running from what I can tell.
I do have one other problem. The little info window in the GUI says that I am on a 14 day trial however I have a full license and support agreement and was told I would get this update for free. I have emailed support on this topic, hopefully they will take care of it.
[UPDATE] - It seems I needed to activate the product again as it lost my registration? Anyway - as soon as I activated, it immediately locked up the GUI and I had to kill it. HOWEVER, my key will not work on the Log Rescue so I'm still not complete yet.
Another issue - the GUI crashes on exit or locks up. I think this 4.0 release is bit half baked! :? This is a database server product guys - mission critical stuff. No room for issues like this!!!
Please, Red-Gate, make these installs cleaner!! Also, let me know if there are any tests I can run that can verify I have a fully clean install.
Comments
To verify your install:
- check that the SQL Backup Agent is installed and running
- check that xp_sqlbackup.dll version 4.0.0.113 is in your SQL Server's Binn folder
- check that when you run
sqlbackup
from within Query Analyzer, the column header states that the DLL version is 4.0.0.113.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
My backups are failing to run. Here is the error I get in the log:
1/28/2006 12:49:15 AM: VDI error 1000: Failed to create virtual device. Check that the SQL Server instance you are trying to connect to is running. Error code: (-2139684857: Failed to recognize the SQL Server instance name.)
Loosing patience quick!!
in Query Analyzer, what does the column header display? Thanks.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
Login paramerters...etc...
Correct version.
If you can instant message me I can give you access to this server via GotoMYPC so you can look at it yourself.
This seems to cause a problem in SQL Backup and it will not work according to support at this time. I am waiting for a software update to see if they can fix the problem.
Also - when using the GUI it deadlocked on the MSDB table and failed to delete some backup history. I looked at the deadlocks and noticed that SQL Backup was deadlocked against itself. Seems this version is still pretty unstable - when are the fixes going into release?
One other note, when running the GUI it initially took a very long time for it to load. Most likely due to the fact that I had a very long history of backups. Don't forget I'm backing up over 300 databases every night!
The deadlock issue is interesting, because a single backup/restore operation does not issue SQL commands across multiple threads. It's more likely that there were 2 or more SQL Backup operations running concurrently, but even then all of them will run the SQL commands in the same order. Are your default connection transaction settings set to autocommit mode?
The long loading time is unlikely to be due to the backup history, as only the last 200 backups and restores operations are displayed. Could you pls run Profiler and confirm that this is indeed the cause? Thanks.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
Also - on loading the tree at the left. It takes about 5 minutes to load the tree remotely with 353 databases in the tree. I have other products that do the same in about 2 seconds. You might want to find a faster way to retreive the list of databases.
The query bottleneck lies with the msdb..backupset table, as the system indexes are not well suited to SQL Backup's queries. As a test, try creating an index with the following definition
CREATE INDEX ix_sqb_01 ON backupset(database_name, type, backup_finish_date desc)
and see if the query execution time improves. The usual caveats about creating indexes on system tables apply.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
If there are users who feel that this information is unimportant, we might consider delaying the retrieval of this information.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8