goofyui
goofyui

Reputation: 3492

How to run a SSIS Package from Visual Studio Environment?

I am running SSIS Package (SSDT) from Visual Studio 2017 Environment, I am getting the error as follows :

Error: at Data Flow Task, SQL Server Destination [48]: Unable to bulk copy data. You may need to run this package as an administrator. Error: at Data Flow Task, SSIS.Pipeline: SQL Server Destination failed

Per online forum, i ran this file DTExecUI.exe to execute the package. I am getting error as follows :-

  1. Error: To run a SSIS package outside of SQL Server Data Tools you must install Standard Edition of Integration Services of higher.

  2. Task Execute Process Task failed

VS 2017 Professional Edition,SQL 2017 Express Edition (64 Bit)

How to run a SSIS Package from Visual Studio Environment which will allow me to debug?

Upvotes: 1

Views: 5724

Answers (1)

Derviş Kayımbaşıoğlu
Derviş Kayımbaşıoğlu

Reputation: 30545

Run visual studio with elevated permission (Administrator)

enter image description here

you need to select Run as administrator

Upvotes: 3

Related Questions