sql server - Connection Leak Issue with SSIS 2014 & Postgres ODBC -


i'm working on project client involves pretty huge etl process move data mssql server postgres. using ssis 2014 odbc drivers provided on postgresql.org, , have setup odbc dsn. using built in oledb sources , odbc destinations, , running issue have not been able find referenced anywhere else online.

the exact issue ssis seems open multiple connections each odbc destination data flow component, connection pooling enabled. can result in 50+ idle connections being opened, not killed until process completed. previewing data visual studio causes connection leaks killed upon restarting visual studio. have temporarily resolved increasing maximum connections 1000, hoping fix underlying problem if possible.

i've done decent amount of experimentation, , issue seems ssis related opposed error in driver.

has else run similar issue , know how resolve this?

edit: thought wasn't going big issue, realize odbc connections leaking when ssis package run integration services well. i've played bit making empty packages , adding single odbc source , package accesses database c# script task; odbc source/destinations causing leaking , not script components, seems bug in ssis , not script tasks or postgres driver :o

anyone have idea how resolve besides rewriting whole package not use odbc sources/destinations (or other weird thing killing connections afterwards shell script)?


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -