Upgrading Problems
owenh
Posts: 25
Hi,
I just upgraded one ofmy servers to the 4.0 version and am unable run the GUI. It is giving the following message:
Cannot find the function sqbutility in the library xp_sqlbackup.dll. Reason: 127(The specified procedure could not be found.).
1/25/2006 10:22:07 AM
Thanks for your assistance.
Owen
I just upgraded one ofmy servers to the 4.0 version and am unable run the GUI. It is giving the following message:
Cannot find the function sqbutility in the library xp_sqlbackup.dll. Reason: 127(The specified procedure could not be found.).
1/25/2006 10:22:07 AM
Thanks for your assistance.
Owen
Comments
You can install the extended stored procedure manually i.e.
Check if the other extended stored procedures (sqlbackup, sqbstatus, sqbmemory) are also installed. If not, install them using sp_addextendedproc. They are all contained in the same DLL file.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
I have just upgraded from version 3 to four on my multi instance server. All other instances register ok in the SQL Backup GUI except for one. I have checked the xp's are all registered correctly and tried reregistering and uninstall/reinstall. I get the message but am able to run a sql backup. The correct version 4.0.0.113 is reported in the log file as well.
Michelle :?
sp_addextendedproc sqbutility, 'xp_sqlbackup.dll'
Then, try running
exec master..sqbutility
from Query Analyzer. What happens?
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
All extended procedures was removed / added with success (no errors)
When I run "exec master..sqbutility" from Query Analyzer, I get this error message :
ODBC: Msg 0, Level 16, State 1
Cannot find the function sqbutility in the library xp_sqlbackup.dll. Reason: 127(error not found).
I guess this is the same error that is returned in the GUI - what do I do ?
Regards,
Tony Fonager
Netcoders ApS
Still not working ...
Regards,
Tony Fonager
Netcoders ApS
Uninstall SQL Backup.
Run the following:
sp_dropextendedproc sqlbackup, 'xp_sqlbackup.dll'
sp_dropextendedproc sqbutility, 'xp_sqlbackup.dll'
sp_dropextendedproc sqbstatus, 'xp_sqlbackup.dll'
sp_dropextendedproc sqbmemory, 'xp_sqlbackup.dll'
DBCC xp_sqlbackup(FREE)
Stop and start the SQL Server service.
Install SQL Backup.
Run
EXEC master..sqbutility
from Query Analyzer/SSMS. What is the error (if any) that is raised? Thanks.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
-
Regards,
Tony Fonager
Netcoders ApS