|
Issue Description
|
Installation (Final Submission) – Database execution
failure |
|
Modules Impacted
|
Product Installer |
|
Resolution Steps:
- If the failure is due to database, check the error.
- If the error is “Violation of UNIQUE KEY
constraint 'IX_CodeMaster'. Cannot insert duplicate key in object
'dbo.CodeMaster'. The duplicate key value is (secret
manager).”, then it is issue due to multiple times
execution of DB scripts.
- To resolve this error, go to iAutomateDB database and run below
command.
IF EXISTS (SELECT 1 FROM CodeMaster WHERE Code='secret manager')
BEGIN
DELETE FROM CodeMaster WHERE Code='secret manager'
END
GO
- After executing the above script, run the installer again.
- If the same issue persists, then perform the above steps
again.
|