Search found 53125 matches

by ray.wurlod
Wed Jun 07, 2006 11:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Polish Charecter Nls Support
Replies: 15
Views: 4617

NLS_LANG and LANG_C

Change them in dsenv as well as in your .profile script.
by ray.wurlod
Wed Jun 07, 2006 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: previous date
Replies: 6
Views: 1257

Try

Code: Select all

DateFromDaysSince(-1,CurrentDate())
or

Code: Select all

DateFromDaysSince(-1,#SYSTEM_DATE#)
(the latter assumes that the job parameter has date as its data type)
by ray.wurlod
Wed Jun 07, 2006 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File Structure
Replies: 16
Views: 6392

This is nothing to do with the use of a schema file or otherwise. What it has to do with is the value you have given to the "Null Field Length" property. When you specify fixed-width format, then the "Null Field Length" (or the "Null Field Value" if you use that) must exactly correspond to the decla...
by ray.wurlod
Wed Jun 07, 2006 8:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Has a file on another AIX Machine
Replies: 1
Views: 1133

Mount the relevant directory on the source machine onto the DataStage server machine, and use that pathname.
by ray.wurlod
Wed Jun 07, 2006 6:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Varbinary error
Replies: 6
Views: 1361

Reserved for future use? Also, the list of SQL data types is those decreed by the SQL 92 standard.
by ray.wurlod
Wed Jun 07, 2006 6:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help: please has import error and no default value; data:
Replies: 20
Views: 10874

Pre-process the file using tr or sed or awk to replace all the line terminators within each line (but not at the end) with, perhaps, spaces
by ray.wurlod
Wed Jun 07, 2006 4:50 pm
Forum: Site/Forum
Topic: Video Tech Tip Series - FEEDBACK
Replies: 49
Views: 73519

Serks? :lol:
by ray.wurlod
Wed Jun 07, 2006 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Varbinary error
Replies: 6
Views: 1361

Re: Varbinary error

mab_arif16 wrote:While compiling I am getting an error varbinary dataype not supported does the data stage supports varbinary?


Isn't it obvious from the message?
by ray.wurlod
Wed Jun 07, 2006 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting Job parameter at runtime from lookup stage
Replies: 5
Views: 1570

Use a separate job (maybe even a server job) to do the SELECT MAX(...) query, capturing the result into a file. Use an Execute Command activity in your job sequence to read that file, perhaps using a cat command. Use the $CommandOutput activity variable from that Execute Command activity to supply t...
by ray.wurlod
Wed Jun 07, 2006 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending values from two columns into one
Replies: 10
Views: 2423

Yes and no. There isn't a collection method in the Link Collector stage that permits "all from source A then all from source B". The (parallel) Funnel stage has a "Sequence" method that permits this mode of operation.
by ray.wurlod
Wed Jun 07, 2006 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mystery of the missing "File" Toolbar!
Replies: 12
Views: 4892

You seem to have parked it hard on the left hand edge of the canvas. All toolbars in Designer are floating. Can you position your mouse pointer in it when it's visible? If so, try double click to see whether you can release it from its parked position, then you can drag it to where you want. If that...
by ray.wurlod
Wed Jun 07, 2006 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cobol Program Template
Replies: 1
Views: 664

JCL templates exist so that you can customize the JCL for your particular installation. COBOL source generation is a method of each stage type and is not negotiable/customizable. After all, what would you change? Generic function calls are made to ARDRTLIB (from memory), and the JCL can specify wher...
by ray.wurlod
Wed Jun 07, 2006 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Requirements of Data
Replies: 4
Views: 1203

Re: Extract Requirements of Data

Can anyone tell me in detail, what all factors need to be concerned for "Extract Requirements of Data". There are some folks around who make a living doing exactly that. They tend to have titles like "business analyst", and produce documents called "source to target mapping" or, if you're lucky, "t...
by ray.wurlod
Wed Jun 07, 2006 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Multiple instance job
Replies: 9
Views: 2081

InvocationID should be in the "job started" entry in the log.

Please advise, when reporting errors, whether kill has been used. It opens an entire extra set of possibilities.

Even better, don't use kill on DataStage processes.
by ray.wurlod
Wed Jun 07, 2006 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: after-stage subroutine to abort job
Replies: 15
Views: 4441

SUBROUTINE DetectAndDelete(Pathname, ErrorCode) * Deletes file if its size is zero ErrorCode = 0 ; * set to non-zero value to stop job * Open file for reading OpenSeq PathName To FileVar On Error * System error of some kind ExitStatus = Status() Message = "System error (cod...