Search found 42189 matches

by chulett
Mon Jan 23, 2012 9:07 am
Forum: General
Topic: Extract the datepart from the filename
Replies: 15
Views: 4088

Why complicate it? Just use Count() or perhaps DCount() although that would change what I posted... slightly.
by chulett
Mon Jan 23, 2012 8:42 am
Forum: General
Topic: Extract the datepart from the filename
Replies: 15
Views: 4088

Count the number of "_" delimiters. Take the "count+1" field for the date and the "1 to count fields" for the file id. For your example, count = 5 so field 6 and fields 1-5.
by chulett
Mon Jan 23, 2012 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple lookups in one Lookup Stage
Replies: 5
Views: 2338

Re: Multiple lookups in one Lookup Stage

Amuktamalyada wrote:I am essentially using one lookup stage instead of many lookup stages
That makes absolutely no difference.
by chulett
Mon Jan 23, 2012 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to .mdb file via datastage
Replies: 11
Views: 4879

knnath wrote:If generating a flat file and importing it to mdb format, do we need some drivers to be installed?
No. And technically, I meant "import it into Access".
by chulett
Mon Jan 23, 2012 8:23 am
Forum: General
Topic: Find the datastage version
Replies: 8
Views: 3940

Again... dot slash.
by chulett
Mon Jan 23, 2012 8:15 am
Forum: General
Topic: Number of Projects/Jobs
Replies: 17
Views: 6676

And just to state the obvious, since you don't have the current directory in your path, make sure you prefix dsjob with "dot slash" if you park yourself in the engine's bin directory:

Code: Select all

./dsjob whatever
Or you could fully path the command. All this, UNIX Command Line 101.
by chulett
Mon Jan 23, 2012 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IBM InfoSphere Information Server engine processes
Replies: 9
Views: 3363

So... resolved?
by chulett
Mon Jan 23, 2012 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Realtime usage of ACCOUNT BASED HASH FILE
Replies: 16
Views: 5017

Seems to me you mean "real life" rather than "real time"...
by chulett
Mon Jan 23, 2012 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to .mdb file via datastage
Replies: 11
Views: 4879

MDB is the old format for Access database files. I would assume you would either need to obtain ODBC drivers for Access, that or just produce a flat file and import it.
by chulett
Sun Jan 22, 2012 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer & Modify
Replies: 3
Views: 1809

Only parallel jobs? Modify, yes, Transformer... no.
by chulett
Sun Jan 22, 2012 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need to find if DataStage installed with NLS enabled.
Replies: 6
Views: 2918

Look in uvconfig to see if you have any NLS settings (like NLSMODE) mentioned. No entries = NLS not installed. Also note that NLS can be installed but not enabled.

ps. You shouldn't need NLS to convert EBCDIC to ASCII... depending on the target characterset, I suppose.
by chulett
Sun Jan 22, 2012 10:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert function in Parallel job
Replies: 3
Views: 2435

I don't see why not - post your derivations. If they use Convert() that is available for both Server and PX jobs.
by chulett
Sun Jan 22, 2012 10:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer -- Unable to run job --2
Replies: 3
Views: 2435

It might be helpful to know what's in the BASIC transformer...

( found that information here)
by chulett
Sun Jan 22, 2012 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in constraint for Date validation
Replies: 3
Views: 1290

1)Define a stage variable If Isvalid ("date", Datecol,"%yyyy%mm%dd") then 1 else 0-sv 2)Use constraint sv=0 A couple of learning points: There really isn't any difference between the two posted approaches (other than one checks for true and the other false), so unless we know th...
by chulett
Sun Jan 22, 2012 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: bitmap with buildop
Replies: 15
Views: 4862

Surely, someone does. Can you not request that they do this for you?