SSIS Execution Failure, nothing written to log file.
we have ssis package contains 1 data flow task. (that's it)
it connects database , sharepoint list (using "sharepoint list source" control codeplex). compares data , sends updates , inserts sharepoint list. i'm not 100% sure, think actual error that's happening has sharepoint returning data ssis package isn't expecting... like...
the content type text/html; charset=utf-8 of response message not match content type of binding (text/xml; charset=utf-8).
that data flow task has ssis log provider text files set record onerror, onpipelinerowssent, onprogress, ontaskfailed events. every day in july (with exception of morning) ssis package has run , written 2 messages log per day. ("beginning of package execution" , "end of package execution"). i've appended example below:
#fields: event,computer,operator,source,sourceid,executionid,starttime,endtime,datacode,databytes,message
packagestart,pbhq002cn,bud\svcpbhq002n,syncmxorderschedulingtosharepoint,{331722bd-4c5d-40c2-ae33-31f8005e6e30},{12228f83-52ca-4260-8629-4496e3c738d4},7/9/2013 5:08:09 am,7/9/2013 5:08:09 am,0,0x,beginning of package execution.
packageend,pbhq002cn,bud\svcpbhq002n,syncmxorderschedulingtosharepoint,{331722bd-4c5d-40c2-ae33-31f8005e6e30},{12228f83-52ca-4260-8629-4496e3c738d4},7/9/2013 5:16:08 am,7/9/2013 5:16:08 am,0,0x,end of package execution.
this morning receieved generic "ssis package failed" message it. opened log text file hoping see error message. not did not find error message, there wasn't "beginning of package execution" message or "end of package execution" message @ all.
here code executing package:
dtexec.exe /file "n:\sql\ssis\tas\syncmxorderschedulingtosharepoint.dtsx" /decrypt "*****" /checkpointing off /reporting ewcdi
i have 2 questions.
- why aren't onpipelinerowssent, onprogress events being written log on of days package ran successfully? i'm wondering why i'm seeing "beginning of package execution" or "end of package execution" messages.
- if ssis package run morning , failed... shouldn't (at minimum) "beginning of package execution" message have been recorded?
wrong events chosen log on, need include more onpreexecute, etc see http://msdn.microsoft.com/en-us/library/ms138020(v=sql.105).aspx
arthur my blog
SQL Server > SQL Server Integration Services
Comments
Post a Comment