Search found 15603 matches

by ArndW
Tue Sep 14, 2010 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null handling warning
Replies: 6
Views: 1309

Demoting the message to informational is not going to help you, since the warning is most likely occurring in the sequential file write stage and any rows with one or more nulls will not get written to the output unless you handle nulls. You will need to handle nulls for all nullable columns when wr...
by ArndW
Tue Sep 14, 2010 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: **VIEWDATA ROW LIMITER HIT**
Replies: 1
Views: 1712

Are you certain that the sequential file exists and is not empty at the time when you are trying to do a "view data"?
##I IIS-DSEE-TOIX-00163 13:53:01(000) <Seq_PS_Vendor,0> Import complete; 0 records imported successfully, 0 rejected.
by ArndW
Tue Sep 14, 2010 2:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connect two UNIX Systems
Replies: 2
Views: 1005

Two commonly used options are:

1. NFS mount the remote drive
2. Use "rsh" (or "ssh")
by ArndW
Tue Sep 14, 2010 2:30 am
Forum: General
Topic: Routine - select a column in the job log
Replies: 7
Views: 2859

No, not using the API calls to get the log entries and it is better to modify your current return string to remove the invocation id column than to access the log files directly. I don't have access to DS right now, but if you post your output with invocation id included then I'm sure that I or some...
by ArndW
Mon Sep 13, 2010 9:11 am
Forum: General
Topic: istool error: Unable to log on to the Datastage server
Replies: 8
Views: 6004

knoblaub - I'm curious as to how that is different from the answer that I gave you, since that is exactly what I posted?

Regardless, please do mark the thread as "resolved".
by ArndW
Mon Sep 13, 2010 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I remove all special characters
Replies: 6
Views: 3223

It would seem that you are in a single-byte mode, i.e. no UTF-8 or extended latin character set, which makes things easier. The sequential file stage allows you to specify a filter, so you could indeed use the follow sed command in the sequential file stage filter condition: sed "s/[^space-~]//...
by ArndW
Mon Sep 13, 2010 7:53 am
Forum: General
Topic: istool error: Unable to log on to the Datastage server
Replies: 8
Views: 6004

Would the following work for you:

/opt/IBM/InformationServer/Clients/istools/cli/istool export -dom SERVER:9080 -u ***** -p ***** -ar arc.isx -ds ''-incdep "SERVER/Tutorial/Tutorial/Jobs/Copy*.*"' -v
by ArndW
Mon Sep 13, 2010 6:51 am
Forum: IBM QualityStage
Topic: Performance Log Issue
Replies: 2
Views: 1608

There is no DataStage command to perform this cleanup, so you should use a UNIX command.
by ArndW
Mon Sep 13, 2010 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I remove all special characters
Replies: 6
Views: 3223

I would not exit out of datastage and use sed unless there were no simple way to do this within the tool. This would depend upon your definition of "special". The base function used for this kind of work is CONVERT()
by ArndW
Mon Sep 13, 2010 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Proble with datasets--One of the nodes is down.
Replies: 9
Views: 2838

The path information for the components is contained in the .ds file, which is a binary file and shouldn't be edited with a text editor. Can you simulate a logical link to that path using a symbolic link?
by ArndW
Mon Sep 13, 2010 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I remove all special characters
Replies: 6
Views: 3223

The answer depends heavily on what you consider to be special characters.
by ArndW
Fri Sep 10, 2010 9:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning
Replies: 3
Views: 1214

You have different metadata and data. adding a carriage-return line-feed to your file is the simplest method to get rid of this warning.
by ArndW
Fri Sep 10, 2010 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Field() Function Ignore Delimiters Found Inside Quotes
Replies: 8
Views: 2812

The following function takes the string as the input parameter and returns the string parsed into distinct fields. EQUATE Delimiter TO ',' EQUATE DoubleQuote TO '"' Ans = '' FieldCount = DCOUNT(InString,Delimiter) QuoteCount = 0 FOR i = 1 TO FieldCount WorkField = FIELD(InString,Delimiter,i) IF...
by ArndW
Fri Sep 10, 2010 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion
Replies: 5
Views: 4073

If you add $OSH_PRINT_SCHEMAS = true to your job parameters you can see the actual schema used between your stages. You are converting HOSP_NUM to a datatype with less possible value and thus you are getting the warning message. The best solution is to explicitly convert the data to the same types i...
by ArndW
Fri Sep 10, 2010 8:16 am
Forum: General
Topic: trimming line terminator
Replies: 17
Views: 5688

CONVERT(@FM,CHAR(10),FIELD(Execute_Command.$CommandOutput,@FM,1,DCOUNT(Execute_Command.$CommandOutput,@FM)-1))

This removes the last field then converts all field marks into char(10)