sql server - DTEXEC.exe for running an SSIS 2013 package -


i have sql server 2012, visual studio 2013 , i'm trying run .dtsx via command line using dtexec.

if use: dtexec.exe /file "c:\myfolder\sub folder \the ssis package .dtsx" return:

couldn't load package because of error 0xc0010014. occurs when cpackage:: load xml fails.

if, use:

"c:\program files (x86)\microsoft sql server\120\dts\binn\dtexec.exe" /file "c:\myfolder\sub folder \the ssis package .dtsx" 

i can see part of task running, since it's warning me trimming 2 columns in task have (the same warning getting in ssis, worked).

warning: 2016-01-28 13:41:49.53 code: 0x802092a7 source: data flow task ole db destination [99] description: truncation may occur due inserting data data flow column "issuer_other_name" length of 124 database column "issuer_other_name" length of 68.

after that, getting:

error: 2016-01-28 13:41:49.68 code: 0xc000f427 source: execute process task description: run ssis package outside of sql server data tools must install execute process task of integration services or higher. end error dtexec: package execution returned dtser_success (0).

it looks others had on different host without integration services installed. using in same place , warnings working since can see names of columns. guess version of dtexec.exe can see taking 120\dts\binn\ folder. right 1 use ssis? please see below ssis version , sql server enter image description here enter image description here

i developed ssis package in vs2013 , had lot of compatibility issues deploying against sql 2012. consistent solution worked me install sql 2014 , use version of dtexec publish sql 2012.


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -