Network Management
Error while executing script message during Configuration Wizard
This article will show how to resolve an issue when the Configuration Wizard fails with an error about executing a stored script for WPM.
First published date
Last published date
Overview
Orion Database FAILED
Database configuration failed:
• Error while executing script- Invalid object name 'dbo.SEUM_WebUserPermissions'.
Sample Image:
Orion Database FAILED
Database configuration failed:
• Error while executing script- Invalid column name "Unmanged".
Sample Image:
Product section
Cause
Resolution
The function needs to be recreated.
- Please remove all SEUM tables.
- Execute the script to Drop the function
-
-- Scripts are not supported under any SolarWinds support program or service. -- Scripts are provided AS IS without warranty of any kind. SolarWinds further -- disclaims all warranties including, without limitation, any implied warranties -- of merchantability or of fitness for a particular purpose. The risk arising -- out of the use or performance of the scripts and documentation stays with you. -- In no event shall SolarWinds or anyone else involved in the creation, -- production, or delivery of the scripts be liable for any damages whatsoever -- (including, without limitation, damages for loss of business profits, business -- interruption, loss of business information, or other pecuniary loss) arising -- out of the use of or inability to use the scripts or documentation. DROP FUNCTION [dbo].[GetSEUMDbVersion];
-
- Please go ahead and execute the script to Create a new function.
-
-- Scripts are not supported under any SolarWinds support program or service. -- Scripts are provided AS IS without warranty of any kind. SolarWinds further -- disclaims all warranties including, without limitation, any implied warranties -- of merchantability or of fitness for a particular purpose. The risk arising -- out of the use or performance of the scripts and documentation stays with you. -- In no event shall SolarWinds or anyone else involved in the creation, -- production, or delivery of the scripts be liable for any damages whatsoever -- (including, without limitation, damages for loss of business profits, business -- interruption, loss of business information, or other pecuniary loss) arising -- out of the use of or inability to use the scripts or documentation. CREATE FUNCTION [dbo].[GetSEUMDbVersion]() RETURNS int AS BEGIN RETURN 5 END;
-
- Re-run the Configuration Wizard, and it should now be complete.