Search found 15603 matches

by ArndW
Mon Oct 19, 2009 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I have an Empty designer and Job control page in a job.
Replies: 2
Views: 1176

Even a simple "** This is a comment line" in the job control is sufficient.
by ArndW
Mon Oct 19, 2009 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the best practice to load 50Mil+ in HF
Replies: 12
Views: 3884

Hmm.. so far the file is still below the 2Gb limit that would necessitate using a 64bit file (which is slower than the default file). Can you output the "ANALYZE.FILE m_HFg2_6 STATS" output - that would give some more information. Do you know what the keys look like and if they are more (o...
by ArndW
Mon Oct 19, 2009 8:51 am
Forum: General
Topic: Adding user id in all db2 stages in multiple jobs
Replies: 1
Views: 711

I would suggest doing an export to a .dsx file, then using a global replace to put in the new strings.
by ArndW
Mon Oct 19, 2009 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combining two column values in to a Singe Column
Replies: 11
Views: 2281

Can you post your actual stage variable derivations, please?
by ArndW
Mon Oct 19, 2009 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSX Migration from V7.5.1 to IBM Information Server 8.1
Replies: 4
Views: 1402

All objects at Version 7 exist and will run at version 8; but the metadata repository at Version 8 and beyond is now separated from the old server engine and hashed files. In addition, user and process management is done within the web console of IIS. You will need to read up on this new functionali...
by ArndW
Mon Oct 19, 2009 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combining two column values in to a Singe Column
Replies: 11
Views: 2281

Are you outputting from the transform stage straight to a sequential file? This method will only work if you do it that way.
by ArndW
Mon Oct 19, 2009 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSX Migration from V7.5.1 to IBM Information Server 8.1
Replies: 4
Views: 1402

Normally the migration is straight-forward and direct. The problem arises when you have a production environment and cannot afford to discover that you aren't part of the 99% that have no issues during the upgrade. At Version 8 there are some fundamental changes to the product and whoever is respons...
by ArndW
Mon Oct 19, 2009 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combining two column values in to a Singe Column
Replies: 11
Views: 2281

"col1" is not valid, you need to use {linkname}.col1; likewise the assign statement needs you to replace "{NewValue}" with your linkname.col1.
by ArndW
Mon Oct 19, 2009 5:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read .XLS files
Replies: 6
Views: 1523

To add to what Ray has already stated, use the Microsoft "msquery" tool to check that your ODBC connection is set up correctly. Once you get msquery to work you will almost certainly also have the DataStage connectivity working.
by ArndW
Mon Oct 19, 2009 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combining two column values in to a Singe Column
Replies: 11
Views: 2281

That is a <CR><LF> sequence for DOS file format. Even though that line only writes 1 row to the output, it creates 2 rows when that file is read again from the sequential file due to the added carriage return / line feed.
by ArndW
Mon Oct 19, 2009 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read .XLS files
Replies: 6
Views: 1523

Is your DataStage server on Windows or UNIX? If on UNIX, then you will need a UNIX ODBC driver to Excel, creating a Windows system DSN will only work with a Windows DataStage server. I think for .xls ODBC connections you don't need a userid or password.
by ArndW
Mon Oct 19, 2009 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job name from pid
Replies: 3
Views: 1343

umm..

Code: Select all

SELECT JOBNO, CATEGORY FROM DS_JOBS WHERE NAME = 'MyJobName';
by ArndW
Mon Oct 19, 2009 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: finding out the jobs/processes running on server
Replies: 9
Views: 2304

I just did tell you my idea, using a simple "ps -ef" on a userid is not helpful in large sites.
by ArndW
Mon Oct 19, 2009 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: finding out the jobs/processes running on server
Replies: 9
Views: 2304

I have a couple of PX jobs here which fire up 400-500 UNIX pids apiece, which is why I prefer to get the "parent" than list all the players.
by ArndW
Mon Oct 19, 2009 2:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with Aggregator stage.
Replies: 3
Views: 1341

In that case your memory requirements for this stage are higher than what the machine can give you. Since you cannot increase your hard data segment size you will need to reduce your storage requirements, which can be done in this case by sorting your data before the aggregator stage.