Thanks davide,
I have tried another solution and it resolved this issue.
First, I deleted app_id with ERROR status from installed_application table (for example 1003 - Deployment Intelligence).
[root~]# psql -U qradar -c 'select id,name,status from installed_application'
id | name | status
------+-----------------------------------+-----------
1005 | User Analytics | ERROR
1003 | Deployment Intelligence | ERROR
1356 | threatglobe.name | COMPLETED
(3 rows)
[root~]# psql -U qradar -c "delete from installed_application where id='1003';"
DELETE 1
[root~]#
[root~]# psql -U qradar -c 'select id,name,status from installed_application'
id | name | status
------+-----------------------------------+-----------
1005 | User Analytics | ERROR
1355 | pulse.full_name | COMPLETED
(2 rows)
Then, I reinstalled successfully Deployment Intelligence app.
I hope this is helpful.
#QRadar#Support#SupportMigration