Results 1 to 4 of 4

Thread: How do I do distributed transactions with DB2 z/OS as target?

  1. #1
    dalecook is offline Junior Member
    Join Date
    May 2010
    Posts
    3
    Rep Power
    0

    Default How do I do distributed transactions with DB2 z/OS as target?

    I have a simple (one table) SSIS package that has DB2 z/OS as the target. When the "Generate CDC Packages" wizard created the package the components' "TransactionOption" properties were set to "Unsupported". The package runs successfully this way, but I want the CDC package to be processed as a logical (distributed) unit of work, so I set the components' "TransactionOption" properties to "Required". When I run the package, the first component, "Initialize Change Processing Task" returns the following error:

    [Initialize Change Processing Task] Error: Failed to acquire Target connection. Microsoft.SqlServer.Dts.Runtime.DtsGenericExceptio n: Error HRESULT E_FAIL has been returned from a call to a COM component. ---> System.Runtime.InteropServices.COMException (0x80004005): Error HRESULT E_FAIL has been returned from a call to a COM component. at Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSConnec tionManager90.AcquireConnection(Object pTransaction) at Microsoft.SqlServer.Dts.Runtime.ConnectionManager. AcquireConnection(Object txn) --- End of inner exception stack trace --- at Microsoft.SqlServer.Dts.Runtime.ConnectionManager. AcquireConnection(Object txn) at Attunity.SqlServer.Dts.Tasks.CDCLaunchTask.Acquire Connections(Connections connections, Object transaction, ConnectionManager& sourceConnectionManager, ConnectionManager& targetConnectionManager)

    What do I do? I've created a couple of other packages that use a remote SQL Server as a target, and I noted that the CDC package wizard by default created all the components using TransactionOption set to "Required", which was good, and they run fine, and I can see DTC handling the transaction.

    Help?

    Host: DB2 z/OS 9.1
    Client: Windows Server 2003 Enterprise x64 SP2
    SQL Server 2005 Enterprise SP3
    DB2 Connect 9.5 fp4
    Attunity DB2 z/OS CDC for SSIS 2.1.14 x64

  2. #2
    Gadi.Farhat is offline Development Team Leader
    Join Date
    Mar 2009
    Posts
    162
    Rep Power
    4

    Default

    Hi,

    Seems like the DB2 OLEDB provider is failing to enlist in a distributed transaction. Check the DB2 OLEDB connection manager properties. What is the "Units of work" property value?


    Regards,

    Gadi
    To Find Out more About Attunity Technology:
    Attunity
    or:
    Contact Us

  3. #3
    dalecook is offline Junior Member
    Join Date
    May 2010
    Posts
    3
    Rep Power
    0

    Default

    There is no OLE DB driver being used. The package is the "Default_CDC" one that your CDC Package Builder Wizard builds for CDC processing, so it uses your ADO.NET components. However, the error I reported above doesn't happen on the CDC Data Flow component, but on the "Initialize Change Processing Task".

    Since there doesn't seem to be something obvious I'm missing, I'll open a ticket.

  4. #4
    Gadi.Farhat is offline Development Team Leader
    Join Date
    Mar 2009
    Posts
    162
    Rep Power
    4

    Default

    Hi,

    The package builder wizard creates a Connection Manager (CDC ADO.NET Target DB Connection) that is used by the CDC package to connect to the target database, in your case DB2 z/OS.

    The Target Connection Manager uses the OLEDB provider selected in the Package builder. You mentioned that you are using DB2 Connect 9.5 therefore, i assume you selected the DB2 OLEDB provider.

    The Initialize Change Processing Task in the CDC package acquires a connection from the Target DB Connection Manager. In your case it failed.

    You may Double Click the "CDC ADO.NET Target DB Connection" connection manager and select the "All" page to view/edit the OLEDB properties.


    Regards,

    Gadi
    To Find Out more About Attunity Technology:
    Attunity
    or:
    Contact Us

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243