Results 1 to 3 of 3

Thread: SSIS Oracle Connector returns Conversion errors for Number Data Types

  1. #1
    RonInOttawa is offline Junior Member
    Join Date
    Jan 2010
    Posts
    2
    Rep Power
    0

    Default SSIS Oracle Connector returns Conversion errors for Number Data Types

    Hello;

    I'm running into a problem when a SQL Server Agent job runs a job that uses the Attunity Oracle Connector.

    If I run the job manually (From BIDS) all works fine).
    If I use the Microsoft OLE DB connector all works fine except that I need to run in 64-bit environment.

    If I run the job from SQL Server Agent, I get the following error messages:

    A conversion error occurred. Column name is 'TimeSpent'.

    SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "OS - Extract Backbone Time Spent data from CodeCollaborator" (342) returned error code 0x80004005. The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing. There may be error messages posted before this with more information about the failure.

    I Tried CASTing the field and not CASTing it with the same result.

    The data type in the Oracle database is set to number. I can't change it because it is a vendor database so we have no control.

    Any help much appreciated.

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

    Default

    Hi Ron,

    To be able to help you, i need more information on how you use the Oracle Connector:
    1. Is the error returned from the Oracle Source or Destination component?
    2. If you are using the Oracle destination component then, is it configured to use Fast Load?
    3. What is the NLS_LANG setting of your Oracle client?
    4. What is the exact problematic column data-type (Precision and Scale)?
    5. If you know which record is causing the error, then what is the 'TimeSpent' column value in this record.


    Regards,

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

  3. #3
    RonInOttawa is offline Junior Member
    Join Date
    Jan 2010
    Posts
    2
    Rep Power
    0

    Default

    I guess the whole idea of Forums is to help people work out their problems.

    Well, you did, just by asking me all those questions.

    For some odd reason, on our Dev Server, the NLS-LANG was not set. Dunno why, it just wasn't. I had our server admin set it and all works beautifully.

    The weird thing here though is that I use the connect in 5 places in this package and it worked on 4 of the 5. Guess I never really pulled a number big enough to cause it to fail in the others.

    Anyway, THANK YOU very much for your assistance.

    Ron...

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