Search found 42189 matches

by chulett
Mon Mar 12, 2007 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

As suggested, Use TO_CHAR in the source and convert it into Char data type, pass it till the target, and User TO_NUMBER to convert it back to Decimal. Have you just tried with Decimal[42,2] and run the job (not just view the data)? Did you got any error? Would you be able to find the data in output...
by chulett
Mon Mar 12, 2007 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server to parallel migration
Replies: 3
Views: 1190

Re: server to parallel migration

we already created 300+ jobs in the server. Our data base is oracle, we need to migrate all the server jobs into parallel. No, you don't. There's no reason, just because you may have just upgraded to EE that now suddenly you 'need' to convert all of your Server jobs to Parallel jobs. EE supports bo...
by chulett
Mon Mar 12, 2007 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: hi
Replies: 16
Views: 3644

Hi!
by chulett
Mon Mar 12, 2007 6:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: manual entry of Job parameters !!!
Replies: 13
Views: 3808

Ken Bland has a very cool little 'Utility' job (one amongst many) that will take Parameters from an existing job and 'seed' them into a new job. Note that this can be a single parameter or an entire 'block' of parameters. These are free from his website and part of his Job Control Utilities package....
by chulett
Mon Mar 12, 2007 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File pattern
Replies: 3
Views: 896

'File Pattern' just means to use wildcards in the filename and, in essence, read more than one file in at a time. It has no bearing on the type of file, so of course you can use the feature with XML files. And there is no limitation on the number of files that I am aware of. Your 'note' is another k...
by chulett
Mon Mar 12, 2007 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dslockd issue
Replies: 18
Views: 4484

If your issue has been resolved, mark the thread as Resolved as well, please.
by chulett
Sun Mar 11, 2007 6:17 pm
Forum: General
Topic: ODBC Timeout When SP runs more than 30 minutes
Replies: 15
Views: 5077

As noted, do an Exact Match search in All forums - you'll get almost a dozen other threads that mention your error.
by chulett
Sun Mar 11, 2007 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

You can't change the default but you sure as heck can change the values after it imports them. What happens when you make the metadata for that field Decimal(40) all the way through the job? No to_char, no StringToAnything, just pass it as a large decimal value with no scale from one end to the othe...
by chulett
Sun Mar 11, 2007 8:29 am
Forum: General
Topic: This Job contains one or more unattached links, all links mu
Replies: 10
Views: 9526

And keep in mind it could very very small, especially if created accidentally with a right-click and small twitch of the mouse.
by chulett
Sun Mar 11, 2007 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

Right, that seems to be the default metadata of choice for an unbounded Oracle NUMBER. :? Hence the suggestion to 'fix' it.
by chulett
Sat Mar 10, 2007 9:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Control Process Failed
Replies: 61
Views: 15996

That's not the uvconfig file - that's the uvodbc.config file. Please check the file called uvconfig in the $DSHOME directory on both servers.
by chulett
Sat Mar 10, 2007 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

The data type is number at database level. I'm assuming this means at both ends - source and target. And if it came out it sure as heck can go back in. Ray - NUMBER is not the same as NUMBER(38). I can put a 39 or 40 digit integer into a NUMBER field without loss of precision. I can put larger numb...
by chulett
Sat Mar 10, 2007 11:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

You'll need to wait and see if anyone else can help. Or call Support and open a case.
by chulett
Sat Mar 10, 2007 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

So try changing the metadata from Decimal(38,10) to Decimal(39) or Decimal(40). This is just a large Integer value with no fractional elements, yes?

Or at worst case use TO_CHAR in your source and then TO_NUMBER on your target side... shouldn't be needed, however.