During the install of the server side objects you get the following error:" Error executing SQL. ORA-01917: user or role does not exist" and the install aborts.
A former Space Manager installation with a different userid is still present
Check the database for earlier installations:
sql> select product_name, install_user, product_version from quest_com_products where product_id in ('35', '61');
Then delete the former Space Managaer installations:
sql> delete from quest_com_products where product_id in (35, 61,62);
Now reconnect in the Space Manager GUI to the database.
Example:
SQL> select product_name, install_user, product_version from quest_com_products where product_id in ('35', '61');
PRODUCT_NAME INSTALL_USER PRODUCT_VERSION
------------------------------ ------------------------------ --------------------
QUEST_SCRIPT QUEST 6.7.0
This older installtion with the user QUEST needed to be deleted
sql> delete from quest_com_products where product_id in (35, 61,62);