resolved, by adding begin and commit section in query like
begin
query
commit.
it works.
Thanks
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I am using SSIS with visual studio 2022 and sql server 2017.
Problem:
Using PG Database, want to delete records of tables using below query, ( I am using ODBC connector for database)
DELETE FROM st_ht.inded where theday = '2021-08-09'.
above query is working fine on PG , but as I execute query in SSIS using "sql execute task", its giving below error.
Error:
Execute SQL Task Error: 0xC002F210, Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly
Note: if I replace delete query with Select, it works.
PFA deletePG.PNG
Thanks
resolved, by adding begin and commit section in query like
begin
query
commit.
it works.
Thanks