
To support user integration from IGI to ISIM, ISIQ relies on IGI’s EVENT_OUT_USER table. If you do not
have the EVENT_OUT_USER table, run one of the following sql scripts according to your IGI database type:

DB2)
Enable:
clpplus igacore/<passwd>@<host>:<port>/<db-name> @en-db2.sql

Disable:
clpplus igacore/<passwd>@<host>:<port>/<db-name> @dis-db2.sql


Oracle)
Enable:
sqlplus iga_core/<passwd>@<SID> @en-ora.sql

Disable:
sqlplus iga_core/<passwd>@<SID> @dis-ora.sql


PostgreSQL)
Run psql commands (note: you will be prompted for the iga_core password):
Enable:
$PG_HOME/bin/psql  --host=<host>  --port=<port>  --dbname=<db-name>  --username=iga_core  --file=en-pg.sql

Disable:
$PG_HOME/bin/psql  --host=<host>  --port=<port>  --dbname=<db-name>  --username=iga_core  --file=dis-pg.sql

OR

Use a PostgreSQL GUI package such as pgAdmin:
Log in as iga_core

Enable:
a) Open query panel and open file en-pg-pgadmin.sql
b) Execute query

Disable:
a) Open query panel and open file dis-pg.sql
b) Execute query
