SQL 2012 - SSIS Error -The step did not generate any output. The return value was unknown. The process exit code was -1073741819. The step failed.

Hi guys 
 Trying to run this package on SQL 2012 agent  and getting below error . No more details I could find so far.
The step did not generate any output.  The return value was unknown.  The process exit code was -1073741819.  The step failed.
About Package - Its connecting to different version (2000,2005,2008,2008R2,2012) servers and putting Jobs information into one Database table.  
Any workaround or fix ?
Thanks
Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach

New package or one that used to work? Connecting how? How does it poll?
On the surface it is an error from a memory space of the binary/non-managed code, so nothing can be really concluded based on what you decided to share with us.
Arthur My Blog
So Same package is working fine from my local machine which has SQL 2008 R2 and SQL 2012 installed. I am trying to push the package on server which has sql server 2012 Installed . 
I don't see any error .
I ran package manually from server using SQL Data tools and ran successfully...
Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach

Similar Messages

  • SSIS fails with error : The process exit code was -1073741701

    Hello All,
    I am having issues with SSIS packages running from SQL agent job.
    The server we are running the job is used for SSIS and there are lot of other SSIS jobs that are running.
    We were able to run the job once successfully and the later runs are failing with the below error.(nothing has been changed) 
    The step did not generate any output.  The return value was unknown.  The process exit code was -1073741701.  The step failed.
    Nothing is being logged in the [catalog].[operations] or operation_messages view. When tuned the profiler ON we do not see the job trying to connect to SSISDB at all. I am assuming that the job is failing much before if does any thing.
    I have moved the package to a different server and ran it with the same proxy account and it works fine there.
    Any help or suggestion on this issue would be helpful.
    Thanks !

    Hi SQL_Help,
    You can run the job once successfully and the later runs are failing with the below error ran it as a Job. “The step did not generate any output.  The return value was unknown.  The process exit code was -1073741701.  The step failed.” It
    was really a generic error message with no information with it.
    We can use Process Monitor and Event Viewer to capture the detail error message. Then based on the error message to fix this issue.  The following similar issue is for your reference:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2014/05/22/ssis-package-fails-with-error-the-step-did-not-generate-any-output-the-return-value-was-unknown.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Ssis execute process task error: process exit code was 1 while the expected was 0

    Hi Sir,
    in my SSIS Package(2012) i am using Execute Process Task which will call bat file.  bat file is located on UNC Path.i am having  the below script in the batch file.
     del \\servername\foldername\name.txt
     rcmd \\servername D:\name1.bat
     del \\servername\foldername\name2.txt
    xcopy \\servername\foldername\file.txt   \\server\foldername\outfilefolder
    i am getting the below error message:
    ssis execute process task error:  process exit code was 1 while the expected was 0
    i want know at what cases error exit code was 1?
    Thanks for your time.

    Hi prasad.alm,
    The error is generic and can be caused by various factors. Here are some suggestions for your reference:
    Manually run the executable to execute the batch file so that we can check whether the command lines in the batch file are correct or not.
    Check there are no duplicate/existing files in the destination folder.
    Try to run the package in 32-bit or 64-bit runtime mode.
    If the issue occurs when running a job, try to create a CmdExec type job step to call the excutable. If this job also fails, it might be an issue between executable and SQL Server Agent rather than the SSIS package itself.
    If the issue persists, enable logging for the package, and check if we can obtain more detailed error message for further analysis.
    Regards,
    Mike Yin
    TechNet Community Support

  • Job scheduling error : The return value was unknown. The process exit code was -1073741819. The step failed.

    I am working in Sqlserver 2008 R2, SSIS 64 bit version
    I am getting the below  error while scheduling the job in the development server  Database. 
    The return value was unknown.  The process exit code was -1073741819.  The step failed.
    The SSIS front end execution runs fine.
    Have anyone  faced this issue before?

    Hi Venkat,
    If you already changed to 64bit and still doesn't work then create proxy account.. 
    To create a proxy account
    In Object Explorer, expand a server.
    Expand SQL Server Agent.
    Right-click Proxies and select New Proxy.
    On the General page of the New Proxy Account dialog, specify the proxy name, credential name, and
    description for the new proxy. Note that you must create a credential first before you create a proxy if one is not already available. For more information about creating a credential, see How
    to: Create a Credential (SQL Server Management Studio) or CREATE CREDENTIAL (Transact-SQL).
    Check the appropriate subsystem for this proxy.
    On the Principals page, add or remove logins or roles to grant or remove access to the proxy account.
    Thanks

  • "Cannot evaluate parameter 'NewName' because its argument input did not produce any output." error received

    I need to rename a set of files with a subset of the files' original name. I wrote this script:
    dir | rename-item -newname {if ($_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+\s\-\s.+'){$name=$matches[1]; -replace '.+', "$name";}}
    This works in that the file and/or directory names are changed, but it also gives me the error:
    Rename-Item : Cannot evaluate parameter 'NewName' because its argument input did not produce any output.
    At C:\...\FileStrip.ps1:1 char:28
    + dir | rename-item -newname {if ($_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+ ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidArgument: (Vivek Shyam:PSObject) [Rename-Item], ParameterBindingException
        + FullyQualifiedErrorId : ScriptBlockArgumentNoOutput,Microsoft.PowerShell.Commands.RenameItemCommand
    I'm not sure how to fix this. Any assistance would be appreciated.

    ok, thanks.
    You've avoided the whole 'use the piped data implicitly' thing by the explicit ForEach. I'm ok with that, but I'm still curious how to get the non-ForEach version to not error.
    Anyway, what you provided almost worked. I modified to be this:
    dir -file |
       Where{$_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+\s\-\s.+'} |
       ForEach-Object{
            $match=$matches[1]
            $newname=$_.Name -replace '.+', "$match"
            Rename-item $_ $newname
    to get it working properly.
    But it looks like the simplest form is:
    dir -file |
       Where{$_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+\s\-\s.+'} |
       ForEach-Object{
            Rename-item $_ $matches[1]

  • HT5622 I made an in app purchase and the payment did not go through due to lack of funds. Now I am trying to change the payment option (credit card) but it is not accepting it.  Please help! thanks in advance.

    I made an in app purchase and the payment did not go through due to lack of funds. Now I am trying to change the payment option (credit card) but it is not accepting it. 
    Please help! thanks in advance.

    I am desperate right now. I'm not sure if I got myself into some real trouble since I got the in-app and it works fine, but the purchase did not show up. It usually asks ms if I want to pay 2.99 and I would press "yes," but this time it did not ask and I feel like I got this app without paying for it. please any advice!?

  • TS1702 Playing at Frontline Commando game. Items to be able to give my credit card number I wanted to get 100 gold. My credit card was discontinued but the money did not come to my show gold. I would ask you to provide information with the need. Player-by

    Playing at Frontline Commando game. Items to be able to give my credit card number I wanted to get 100 gold. My credit card was discontinued but the money did not come to my show gold. I would ask you to provide information with the need.
    <Personal Information Edited by Host>

    To Contact iTunes Support and request assistance Click  Here

  • After I reset the iPod I lost all of the iPod contents.  When I attempted to resynch I learned the iPod did not have enough space.  How can this be so when I have nothing on the iPod?

    Please help!.
    After I reset the iPod I lost all of the iPod contents.  When I attempted to resynch I learned the iPod did not have enough space.  How can this be so when I have nothing on the iPod?

    You will prbably had other sync setting than the default ones
    Check if the option "Only sync marked songs" is checked.

  • Execute Process Task - Error :The process exit code was "2" while the expected was "0".

    I am designing a utility which will keep two similar databases in sync. In other words, copying the new data from db1 to db2  and updating the old data from db1 to db2.
    For this I am making use of the 'Tablediff' utility which when provided with server name, database, table info will generate .sql file which can be used to keep the target table in sync with the source table.
    I am using the Execute Process Task  and the process parameters I am providing are:
    WorkingDirectory : C:\Program Files (x86)\Microsoft SQL Server\90\COM
    Executable :      C:\SQL_bat_Files\SQL5\TC_CTI\customer.bat
    The customer.bat file will have the following code:
    tablediff -sourceserver "LV-SQL5" -sourcedatabase "TC_CTI" -sourcetable "CUSTOMER_1" -destinationserver "LV-SQL2" -destinationdatabase "TC_CTI" -destinationtable "CUSTOMER"  -f "c:\SQL_bat_Files\sql5\TC_CTI\sql_files\customer1" 
    the .sql file will be generated at:  C:\SQL_bat_Files\sql5\TC_CTI\sql_files\customer1.
    The Problem:
    The Execute Process Task is working fine, ie., the tables are being compared correctly and the .SQL file is being generated as desired. But the task as such is reporting faliure with the following error :
    [Execute Process Task] Error: In Executing "C:\SQL_bat_Files\SQL5\TC_CTI\package_occurrence.bat" "" at "C:\Program Files (x86)\Microsoft SQL Server\90\COM", The process exit code was "2" while the expected was "0". ]
    Some of you may suggest to just set the ForceExecutionResult = Success (infact this is what I am doing now just to get the program working), but, this is not what I desire.
    Can anyone help ?

    Jwelch,
    Thanks for the input,
    "Change the SuccessValue property of the Execute Process task from 0 to 2 (which means that you will get a failure if there are no differences, since TableDiff returns 0 in that case)."
               -- Not possible b'coz if there is no difference in the tables, which is also a possiblility, the job will fail.
    "FailTaskIfReturnCodeIsNotSuccessValue to FALSE (which means it won't fail regardless of the code returned)."
              -- Does this mean the job will never fail? Lets say the target table doesnt exist, then, by setting "FailTaskIfReturnCodeIsNotSuccessValue to FALSE " will the job fail? I guess my question is, how is what you've suggested different from setting "ForceExecutionResult = Success". Both the cases will show the task status "Success" even if there is an error.
    Is there a way to keep the property of job 'Failure' if there is any generic errors like target table not found or say, the path given for .sql file output is not valid etc.
    Thanks again,
    Little_Birdie.

  • The system could not create any outputs for mv type 561

    Hi,
    I tried to print out a goods receipt others in MIGO and i received "The system could not create any outputs" when i tick on output control. I tried to follow the steps in How to print the material document in MB1C movement 561 I stuck at step 4 where i cannot find MvT 561. Please help
    Chk your setting as below to get GR print out.
    . Maintain the Printer Name in MM->Inv Mgmt and Phy Inv->Print Control-> Gen Settings-> Printer Setting Enter the local printer where you want to print your Goods posting document
    2. Ensure that in MM->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Item Print Indicator, 1 stands for Matl Doc print out
    3. In MM->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Print Version, maintain Print Version 2
    4. In MM->Inv Mgmt and Phy Inv->Print Control->Maintain Print Indicator for Goods Receipt/GI/Transfer Posting Documents
    Here for Particular mvt type 101,201,121,311,313,501,521,561 etcu2026 Maintain the Print item as 1--Material document printout
    5. In MM->Inv Mgmt and Phy Inv->Output Determination->Maintain Output Types, for the Output types WE01, WE02 and WE03, ensure the following--
    Select the particular Output type then goto Details
    a. Default Values: Dispatch Time is 3 or 4 as per reqmt. and Transmission medium is 1
    b. Print Parameter is 7
    6. In MM->Inv Mgmt and Phy Inv->Output Determination->Printer Det->Printer Determination by Plant/Str Loc , Maintain the Output device for all your Plants
    7. Go to MN21, for Tr Type WE, Print Version 3, maintain Print Item as 1.
    Now the settings are ready for Printing Material doc
    8. While doing MIGO, ensure that in General Tab, you get "3 Collective Slip" beside the Print Indicator and you tick mark the field.
    9. Now depending on the setting in 5a, the Matl doc is printed. If it is 3, you have to print it using MB90. If it is 4, it is printed immediately.

    issue is resolved

  • WorkFlow Error -Strategy RR_MANAGER did not determine any approver

    Dear ,my expert:
    I work in SRM7.0 .SRM extended classic scenario.I want to use the contract one-step approve workflow and active it .
    one-step approve :/SAPSRM/C_CT_600_001_SP04
      And I set the manager in the ORG. Plan
    After I releasing one contract ,I get one red message in the Processor "Strategy RR_MANAGER did not determine any approver  "
    So ,What is the problem ? Your reply will be useful to me !
      BestRegards!
      Alex!

    Hi,
      What happen when you run the FM 'RH_GET_LEADING_POSITION' IN se37 dirrectly.. check the OSS note 1363088 if your SP level is below 5..
    Saravanan

  • IWeb Error: "Your search did not produce any results."

    I just updated my iWeb and added the new search and comment features to my iWeb site. I am happy to see these features added but the search feature gives me a page displaying "Your search did not produce any results." Does anyone else have this issue? I am using my .Mac account and did a "Publish all to .Mac" to see if that would help. Comments work great. Can anyone help? Not good to have a feature that does not work.
    Cheers!
    Patrick

    I am having the same problem and can probably give you an answer as to why the search feature is not working...
    Look carefully and you may notice that by re-publishing your site with 1.1, iWeb has converted all text on your site to image files (probably .png). This is what happened when I re-published.
    Therefore, there is technically no text to "search" through...
    No fix as of yet... I will ttry to republish yet again tonight

  • How do I retrieve my sent messages after upgrading to ios5.  the synch did not provide any sent messages

    I just did an upgrade to ios 5.  Some different things happened that I have not encountered before.  It indicated I was synch more apps than I had - in the order of 240 when I have maybe 50.  When I opened mail  - all my inbox, sent and deleted messages were missing.  Any advice and sugestions would help.

    The iTunes sync process does not include email account mailboxes and messages.
    If the account is a POP account, all received messages tha remain on the server will be downloaded as new and unread messages. Messages in the account's Sent and Trash mailboxes will not be available since these mailboxes are not stored on the server with a POP account.
    If the account is an IMAP account and you were storing the account's Sent and Deleted mailboxes on the server with the account settings on your iPhone, messages in all server stored mailboxes will be available again but must be re-downloaded which will occur when a server stored mailbox is selected.
    Not sure why the apps in your iTunes library that were not selected under the Apps tab for your iPhone sync preferences with iTunes and were not on your iPhone were selected and transferred, but the apps can be removed by deselecting the apps under the Apps tab for your iPhone sync preferences with iTunes followed by a sync.

  • I just bought a album from itunes, but some of the songs did not download. any thoughts?

    why don't all the songs download when you buy an album?

    Hello camp3199,
    I am sure you are eager to download and listen to the album you purchased.  If you click on the cloud next to the songs, it should start downloading the track.  If the song does not download or is not visible in iTunes, I recommend the following steps.
    First, I recommend checking to see if the download was interrupted.  You can use the steps in this article:
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/HT1725
    If the album does not download after following the steps in that article, I recommend trying to download the album from the list of past purchases.  As long as you are signed in with the same Apple ID you used to purchase the album, you will not be charged again.
    iTunes 11 for Windows: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12491
    If you are still not able to download the album, I recommend reporting this issue to the iTunes Store:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/HT1933
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Goods receipt did not generate any Accounting Document

    Good day!
    Our PO has been processed in MIGO for Goods Receipt. After the processed, we tried to check its FI Document but it displayed a message "No subsequent document found in Accounting". Kindly assist us in troubleshooting what could possibly be the error.
    Thank you.

    Dear,
    In the meantime check in Purchase order the Goods received check box checked and GR Non valuated check box unchecked in Delivery tab.
    Make sure these two options also, which causes the accounting postings not done for GR.
    Regards,
    Syed Hussain.

Maybe you are looking for