Exporting data from Sailpoint ISC to local CSV via SQL Loader Connector

Hello Community,
I need to export specific identity data from SailPoint Identity Security Cloud to a CSV file located on an SFTP server using the SQL Loader Connector.

Unfortunately, I’m struggling to get the export functionality working as expected. I would greatly appreciate your guidance or examples on how to achieve this.

What I’m Trying to Achieve
1. Export specific identity attributes (e.g., sAMAccountName, firstname, lastname, email, etc.) from SailPoint Identity Security Cloud.
2. Save the exported data as a CSV file named test.csv on my SFTP server.

The SFTP server details:
Root Directory: c:\sftp

My Current Configuration of connector:
Sure I’ve filled out the username and password, connection settings:
• Data Files URL: jdbc:csv:sftp://{hostname}/
• Driver Class: com.hxtt.sql.text.TextDriver
• Additional Connection Parameters:

_CSV_Header=true
_CSV_Separator=,

Query Settings
1. Test Connection SQL Query:
SELECT 1;
This works successfully and confirms the connection is active.
2. Account SQL Query (simplest query for testing):
SELECT firstname FROM test;

When I run the aggregation Task in SailPoint Connector Settings.
I receive this error

Log message is not clear to me. I’m unsure if my SQL query or configuration is missing something critical for exporting the data.

Thank you in advance for your help!

The error suggest that you may not have setup schema for your source.

You are right, I’ve found out that by launching the aggregation (with the defined schema and SELECT request) I fetch the data from CSV located on SFTP server, but my task is to export data from Sailpoint to CSV

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.