zoukankan      html  css  js  c++  java
  • SSIS Package Deploy ActiveBatch some error

    errorCode = c0209303, description='The requested OLE DB provider Microsoft.Jet.OLEDB.4.0 is not registered. If the 64-bit driver is not installed, run the package in 32-bit mode. Error code: 0x00000000.
    An OLE DB record is available. Source: "Microsoft OLE DB Service Components" Hresult: 0x80040154 Description: "Class not registered"'
    22:31:50 W SsisError(errorCode = c020801c, description='SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "QCBackend_v2" failed with error code 0xC0209303. There may be error messages posted before this with more information on why the AcquireConnection method call failed'
    22:31:50 W SsisError(errorCode = c0047017, description='OLEDB_Source_PreStage_QCAudit failed validation and returned error code 0xC020801C'

    .mdb File Insert into DataBase,Use  Run64BitRuntime to False

    If also Not Sucess,You must Chaged other Provider Microsoft Office 12.0 Access Database Engine OLE DB Provider

    Show Variables to Check Read Config true or false

    Modify .cs Code

    public void Main()
    {
    StringBuilder myString = new StringBuilder();

    foreach (Variable item in Dts.Variables)
    {
    myString.Append(item.Name + ": " + item.Value + " ");
    }

    DialogResult result;
    result = MessageBox.Show(myString.ToString(), "Are these parameters correct?", MessageBoxButtons.YesNo);

    if (result == DialogResult.Yes)
    {
    Dts.TaskResult = (int)ScriptResults.Success;
    }
    else
    {
    Dts.TaskResult = (int)ScriptResults.Failure;
    }
    }

  • 相关阅读:
    DIV指令一般用法
    "Programming"和"Programming"是同一个"Programming"吗?
    对5个国家的名称进行排序详细解析
    Hello World程序
    用 select 实现多选
    浅谈HTTP中Get与Post的区别
    ligerUI 下拉框表格(多选)
    LigerUI自带弹窗返回值例子
    LigerUI Grid服务端分页技术
    jQuery LigerUI 插件介绍及使用之ligerGrid
  • 原文地址:https://www.cnblogs.com/HuairongChen/p/14066916.html
Copyright © 2011-2022 走看看