We are implementing a new SQLLoader connector that is pulling a flat file from our sftp server into Sailpoint IDN. We have performed this many times with our various databases successfully however as I am trying this with our Tableau file, we are receiving the following error when importing our accounts for the first time.
sailpoint.connector.ConnectorException: Index value for [EMAIL] on new object was null.
Our account schema looks good and our query to pull the data appears good so unsure on why email is showing null.
Our account sql query is:
SELECT email AS EMAIL, full_name AS FULL_NAME, CONCAT( site, ‘|’, role) AS PROFILE FROM tableau_prod_users
UNION
SELECT email AS EMAIL, full_name AS FULL_NAME, CONCAT( site, ‘|’, role) AS PROFILE FROM tableau_sbox_users
Any help would be appreciated.