Search found 15603 matches

by ArndW
Mon Jun 16, 2008 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Post-installation problems with IBM info server
Replies: 17
Views: 8625

I'm also bothered that the telnet to the server doesn't work, that listener should be working. How much effort would a complete delete and re-install be?
by ArndW
Mon Jun 16, 2008 2:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp Variable.
Replies: 6
Views: 1452

karry450 - The format for that would be "D4/DMY[2,2,4]"
by ArndW
Mon Jun 16, 2008 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to check for last record
Replies: 6
Views: 2285

You won't know that you are processing the last row until you hit the end-of-file, when it is too late. You can pass the number of rows into the job as a parameter and compare against that number in the transform stage.
by ArndW
Mon Jun 16, 2008 1:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp Variable.
Replies: 6
Views: 1452

Karry450 - it is in the documentation for the OCONV function. Date, 4 digits for the year with a "/" as separator and European format.
by ArndW
Mon Jun 16, 2008 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OBJ files
Replies: 4
Views: 1270

I will assume that "cud" meand "could" - OBJ files are not a known ending of any files used in DataStage.
by ArndW
Mon Jun 16, 2008 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp Variable.
Replies: 6
Views: 1452

No, you need to concatentate the system variables @DATE and @TIME, i.e.

Code: Select all

OCONV(@DATE,'D4/E'):' ':OCONV(@TIME,'MTS')
by ArndW
Mon Jun 16, 2008 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Number
Replies: 27
Views: 8053

veera24 - The SQL that ag_ram gave you is (a) incorrect and (b) uses undocumented tables in the product as well as the TCL command line.
It is simpler and better to get the job number by running the job, then looking at your first director log file entry and getting the name from there.
by ArndW
Mon Jun 16, 2008 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the rejected records in 8x
Replies: 5
Views: 1458

This is not a Version 8 issue, it is a Server vs. Parallel issue. In Parallel jobs, the rejects are initiated in the stage that causes them - so you need to enable rejects in the DB2 stage and make a reject link from there.
by ArndW
Mon Jun 16, 2008 12:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: isvalid function
Replies: 4
Views: 1513

No & No. "2008-03-19" is not a valid timestamp, and "2008-03-19 04:22:59" is not a valid date.
by ArndW
Sun Jun 15, 2008 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: processing the file based on the string in the file.
Replies: 12
Views: 1988

Adding to Craig's post to make it bulletproof:

Code: Select all

tail -1 <filename> | grep FOOTER_FILE | wc -l
if that string could show up elsewhere in the file
by ArndW
Sun Jun 15, 2008 9:49 am
Forum: General
Topic: DataStage Backup and Recovery from Server
Replies: 21
Views: 18305

ag_ram - you have managed to post 5 paragraphs without actually adding anything to the thread or even coming close to touching upon the thread topic. I do find it amusing to see that you recommend that I delve into the internals of DataStage and even funnier to see how you lecture me on the use of u...
by ArndW
Sun Jun 15, 2008 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is it possible to view DB2 query?
Replies: 6
Views: 1142

No more food for thought from me. I asked for the SQL twice without success so I am giving up.
by ArndW
Sun Jun 15, 2008 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using lookup fileset : getting error
Replies: 12
Views: 2981

Just to confirm that we are talking about the same thing: both your main data stream input to the lookup stage as well as your reference link to the lookup fileset both have a column called "SOURCE_SYSTEM_COUNTRY"; and this column was also defined with the same name when you created your lookup file...
by ArndW
Sun Jun 15, 2008 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Map Name to be given in type conversion
Replies: 10
Views: 5373

The reason that you cannot see all of Ray's post is that he is one of the very few posters where you need a premium membership to view all of the contents. You can see the information about the advantages of becoming a member at Member Benefits.
by ArndW
Sun Jun 15, 2008 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: processing the file based on the string in the file.
Replies: 12
Views: 1988

The simplest way would be to check for the footer from a Job Sequence and then decide whether or not to call up the processing job.