Search found 15603 matches

by ArndW
Tue Jun 07, 2005 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use Account Name in hash file
Replies: 9
Views: 3270

I was trying to open the VOC file but it was not in a readable format (As said by Arnd, that VOC entry will contain3 lines). Could you please tell me how to view the contents of VOC file? Also how does it assist in migration of code across projects? Shyju, the VOC file is itself a hash file and can...
by ArndW
Tue Jun 07, 2005 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call DSJobReport from another subroutine??
Replies: 1
Views: 1114

I found DSU.DSJobReport in the project, and it takes 2 parameters - but I couldn't find it described anywhere in the docs. Are you sure you don't want to call the documented DSMakeJobReport(JobHandle,ReportL,Separator) instead? You can only call one after-job subroutine, but you can always have your...
by ArndW
Tue Jun 07, 2005 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading CFF
Replies: 4
Views: 807

Glad you got that sorted out!
by ArndW
Tue Jun 07, 2005 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Distributed Hash Files
Replies: 14
Views: 4450

ewartpm, did you copy the I-descriptor from your file to the VOC? I did the following test: 1. CREATE.FILE AW1 DYNAMIC 2. CREATE.FILE AW2 DYNAMIC 3. ED DICT AW1 dfkey 01 I 02 IF @ID[1,1]='1' THEN 1 ELSE 2 ... 05 3R 4. LIST AW1 dfkey {to force a compile of the I-descriptor} 5. COPY FROM DICT AW1 TO V...
by ArndW
Tue Jun 07, 2005 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to reterive Metadata informatrion
Replies: 3
Views: 1189

Hello Atanu, the DataStage product gives you many different options for accessing the job logs. This subject has been discussed several times, I did a quick search for "save log information" and got many hits. One common way of accessing the log data for a job is to use the OX level dsjob command. T...
by ArndW
Tue Jun 07, 2005 5:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Distributed Hash Files
Replies: 14
Views: 4450

ewartpm -> The I-type needs to be in your VOC file, do a "COPY FROM DICT <PartfileWithItype> TO VOC akakey" and then do your "BUILD.DF ..... INTERNAL akakey"
by ArndW
Tue Jun 07, 2005 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Distributed Hash Files
Replies: 14
Views: 4450

And to add to your last open question - the algorithm that returns the part number is an I-Type, which is a compiled expression and can contain or use any part of the record, but usually is restricted to the key column.
by ArndW
Tue Jun 07, 2005 2:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NOTFOUND as field name
Replies: 4
Views: 1026

Phil,

you use it. I just did a quick server test job using NOTFOUND without issues. Perhaps you could explain the problem you are having...
by ArndW
Tue Jun 07, 2005 1:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while selecting column form a hash file
Replies: 4
Views: 946

Try renaming your column from "A" to another name, preferably one that is not a reserved DataStage keyword and see if you have the same problem.
by ArndW
Tue Jun 07, 2005 1:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Basic Statement - CREATE
Replies: 11
Views: 1940

akrzy,

you need to be careful with Windoze paths that have embedded spaces in them, but the sample file you mentioned, "C:\DS305Files\RecentEmployeesBASIC.txt" should work. Please remember that the file is going to be created on the [b]server/b] path as specified, not on your local client pc.
by ArndW
Tue Jun 07, 2005 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Routine - Custom Build
Replies: 4
Views: 828

Do you mean a "SELECT" to a remoted database (ODBC, or direct DB connect) or to a Hash file? Since routines tend to get called often, quite frequently once per row of data, doing any type of a SELECT will be extremely slow - considering the enormous overhead involved in connecting and opening up a D...
by ArndW
Tue Jun 07, 2005 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert VarBinary Datatype to string
Replies: 7
Views: 6028

I should have elaborated, the VarBinary datatype is used to store information in a variable length format that is not to be interpreted as belonging to any given character set. This causes problems, as you have noted, in Px when it tries to do a normal datatype conversion. If you are reading from a ...
by ArndW
Tue Jun 07, 2005 12:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Basic Statement - CREATE
Replies: 11
Views: 1940

akrzy, I agree with what Ray said - but I seem to remember a prolonged thread a coupel of weeks ago about the CREATE statement... I never use it but others argued that it ought to be used. My usual syntax for opening and/or creating a sequential file is: OPENSEQ 'myfile' TO MyFilePtr THEN WEOFSEQ My...
by ArndW
Tue Jun 07, 2005 12:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: More than one XML Reader in a Job?
Replies: 3
Views: 633

OK, in that case I don't know what the issue in your case could be; the concurrent reads is something I've seen several times before, though.
by ArndW
Tue Jun 07, 2005 12:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job completion status
Replies: 5
Views: 1447

Ray - thanks for the heads-up!!!! I knew there was a reason for actually referring to the documentation but couldn't remember it :)