Question
MSSQL Extension mapping table name syntax error
I create SQL command for purge all data in table.
DELETE FROM [[tableName1]];
[[tableName1]] is the input table.
When execute this service. It error like below code
Unable to Invoke Service purgeTable on MTH.FC2.ASSY.SQLConnector : Execute Update failed: com.microsoft.sqlserver.jdbc.SQLServerException: Must declare the table variable "@P0".
But, If I put the table name inside the service code. It can execute without error.
DELETE FROM test;
How I should to do ?

