I have created a mapping to truncate and load data in destination table. I used to stored procedure transformation unconnected in my mapping. The stored procedure doesn't have output result it will have there input parameters (db name, schema name, table name) itself. I tried to write different commands to call the stored procedure
:SP.sp_name('db name', 'schema name', 'table name')
CALL sp_namE('db name', 'schema name', 'table name');
CALL SP_NAME();
but none of them worked.
The mapping is as follows:
SOURCE > SQ > TARGET UNCONNECTED sp transformation.
