Search found 15603 matches

by ArndW
Wed Dec 12, 2007 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Plug-in Stage Remote FileName timedate variable
Replies: 2
Views: 1008

I think the answer here is "no". You could create a job parameter to hold this value and fill it at runtime with the current time from a calling Sequence. If you don't wish to use a sequence, you might be able to define the FTP stage in a shared container and pass the datetime in as a parameter - us...
by ArndW
Wed Dec 12, 2007 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling routine inside a rotuine
Replies: 7
Views: 3032

You need to add a

Code: Select all

DEFFUN IN_RTN_1(Param1) CALLING 'DSU.IN_RTN_1'
statement and then just use the IN_RTN_1('a') call.
by ArndW
Wed Dec 12, 2007 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Problem
Replies: 7
Views: 2085

Try using the DataSet tool or the UNIX orchadmin ll command to find out what the real schema of the dataset is. I would think it does have that column.
by ArndW
Wed Dec 12, 2007 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to transfer file from Mainframe to UNIX
Replies: 9
Views: 2307

Stefan - I think the ConnectDirect or mainframe issue is that some files can have compressed spaces which are not interpreted/expanded correctly when doing such transfers. The compressed spaces binary values can sometimes show up in COMP-n fields and thus cause the file to be expanded incorrectly.
by ArndW
Wed Dec 12, 2007 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding FTP stage
Replies: 4
Views: 953

The documentation for the FTP stage is sufficient to use the stage, but it doesn't explain the complexities of using FTP on mainframe; the assumption is that you will get that information elsewhere. Can you connect and transfer data using the command-line FTP program? If yes, then you can use FTP St...
by ArndW
Wed Dec 12, 2007 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to transfer file from Mainframe to UNIX
Replies: 9
Views: 2307

If you do a binary transfer, i.e. with COMP-3 fields in the file, you won't need to do a conversion on the mainframe; but it does make life easier when you have EBCDIC (or ASCII) text only files.
by ArndW
Wed Dec 12, 2007 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to transfer file from Mainframe to UNIX
Replies: 9
Views: 2307

Yes, you can use the FTP stage to do this; but you need to make sure that the systems have been configured to talk to each other.
by ArndW
Wed Dec 12, 2007 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Datastage 7.5.2 compatible with Linux 64 bit?
Replies: 4
Views: 1678

I'm not sure if DataStage will run on 64Bit Linux; you will have to check the product/platform list published by IBM. But there is no problem using 64BIT hashed files on systems running only a 32 bit operating system; DataStage takes care of the internal pointers, not the OS.
by ArndW
Wed Dec 12, 2007 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SIMPLE DS job taking 90% CPU??
Replies: 4
Views: 1043

Set a constraint of "1=2" on the output of your transform stage. Does it still process only 20 rows/sec at high CPU utilization? If yes, then you have an issue. Using high %age CPU amounts in DataStage is usually a good thing.
by ArndW
Wed Dec 12, 2007 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job locked... unable to open
Replies: 3
Views: 1926

The kill -9 is not interruptable, so the process died and was unable to release it's locks. This is why we always recommend not doing a kill -9 . In your case I would recommend (a) Enabling the deadlock daemon. This will, in the future, automatically cleanup after issues like this. (b) Login to eith...
by ArndW
Wed Dec 12, 2007 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Appending CRLF to data being read from a sequential file
Replies: 6
Views: 1317

Appending CRLF to data being read from a sequential file

I can't seem to get this to work, and since I don't have a UNIX login I cannot experiment. Basically, I would like to add a CR and LF to the end of a file being read in a PX sequential file stage. The Filter is already being used to uncompress the file and reads "gunzip -c" but I would like to add a...
by ArndW
Wed Dec 12, 2007 5:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Internal Error: (nP==nC)
Replies: 4
Views: 2241

Does the job run? What stages does it use? If you remove stages one by one, after which stage was removed does it validate?

Interesting, when I did a search just now I found This thread
by ArndW
Wed Dec 12, 2007 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding year to date
Replies: 2
Views: 828

Is the column type a string? If so, just use

Code: Select all

In.DateColumn[1,4]+6:In.DateCoLumn[5,4]
by ArndW
Wed Dec 12, 2007 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ParseError: Parsing parameters "max=0" for sch
Replies: 1
Views: 2501

Hello and welcome to DSXChange!

Your error message indicates that you have left the length of a string data column set to 0, which DataStage does not allow.
by ArndW
Wed Dec 12, 2007 3:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Internal Error: (nP==nC)
Replies: 2
Views: 1236

Moderator, please remove this thread, it is a duplicate of this one