Search found 15603 matches

by ArndW
Tue Sep 11, 2012 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create table Dynamically
Replies: 1
Views: 891

Do all the tables have the same DDL? If so, then two methods come to mind immediately: Read the file within a sequence, looping once for each table, then (a) call a PX job passing the table name and use the appropriate write table stage for your database and use the "create table" option. ...
by ArndW
Tue Sep 11, 2012 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Viewing Performance Statistics Within Local Container
Replies: 4
Views: 1039

I wouldn't hold my breath if I were you. This has been around since local containers were first implemented.
by ArndW
Tue Sep 11, 2012 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error
Replies: 3
Views: 1543

Does your "TempSource" DDL has a "bigint" as the column datatype? If so, then it might be that the ODBC driver converts this to a DECIMAL(19,0); in which case you can either declare the variable as a decimal(19,0) in the datastage input, or turn off the warning and let DataStage ...
by ArndW
Tue Sep 11, 2012 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC size mismatch on timestamp
Replies: 5
Views: 8852

Add the "microseconds" to your datastage timestamp column. If that doesn't work, you need to shut off "fail on size mismatch" in the ODBC stage. Do you want or need the 3 microseconds? If not, then do a CAST in sql to change the type to one with no microseconds. The sytnax depend...
by ArndW
Tue Sep 11, 2012 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Viewing Performance Statistics Within Local Container
Replies: 4
Views: 1039

No, you've discovered that this functionality doesn't work. I usually end up making a copy of the job, unconstructing the container and running that copy to see the designer statistics.
by ArndW
Tue Sep 11, 2012 3:59 am
Forum: General
Topic: Rename folders in the repository
Replies: 3
Views: 1068

The "folders" shown in the director are just virtual attributes to jobs, thus one cannot simple rename a folder but one needs to do as Craig has already suggested.
by ArndW
Tue Sep 11, 2012 3:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC size mismatch on timestamp
Replies: 5
Views: 8852

The error concerns the precision of microseconds. The timestamp coming into datastage is "2012-09-10 12:10:12.567" while the datastage type isn't declared with any microseconds; and since schema reconciliation in your stage is turned on (you can turn it off) the error message is displayed....
by ArndW
Tue Sep 11, 2012 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Map Setting
Replies: 1
Views: 1066

As long as the source and target mappings are known then using NLS DataStage will not be an issue and it will correctly perform mappings/conversions.
by ArndW
Mon Sep 10, 2012 10:37 am
Forum: General
Topic: Designer: 'Compiled succesfully', Director 'Not Compiled'
Replies: 3
Views: 1377

Are you sure that you are picking up all job types and doing a "force" compile?

What happens if, in the designer, you click on the job name, do a right-click and mutiple-job-compile just that one job?
by ArndW
Sat Sep 08, 2012 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we use server routines in parallel environment directly
Replies: 2
Views: 1110

The only way to call server routines from a parallel job is to use a BASIC transform stage and call them from that stage. The exceptions are the before- and after- job routines which are BASIC ones in all job types. Parallel job routines are calls to objects which use c++ type variables and are typi...
by ArndW
Sat Sep 08, 2012 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Decimal - losing negative sign
Replies: 2
Views: 1311

I can't reproduce the problem on my Windows 8.7 machine, "StringToDecimal('-77')" into a Decimal(10) field keeps the negative sign.
by ArndW
Fri Sep 07, 2012 10:11 am
Forum: General
Topic: Universe program does not run in 8.7
Replies: 12
Views: 3860

Yes, it needs to be compiled and catalogued.
Yes, you can compile it - but first you need to find the source.
You will need to do a "CREATE.FILE BP 19" to create a BP subdirectory in your project, then copy the source into it and the compile as suggested above.
by ArndW
Fri Sep 07, 2012 9:44 am
Forum: General
Topic: BeforeJob does not appear in job log
Replies: 9
Views: 2598

The before-job gets called before any stages in the job, so container usage is unlikely to affect this problem.

I meant to look at the source code of your "DeleteHashFiles" routine - what happens between the start and the first DSLogInfo() call that might terminate it?
by ArndW
Fri Sep 07, 2012 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error using basic transformer stage in parallel Job
Replies: 1
Views: 1536

Do you realize that you can put a reject row into a transform stage and then add/delete/change columns there? Do we have all the basic functions, link functions available in basic transformer in parallel transformer? If not, in the reject link of any stages in parallel job can we add few other colum...