Search found 53125 matches

by ray.wurlod
Fri Nov 30, 2012 2:02 am
Forum: General
Topic: Listing Names of All DataStage Jobs
Replies: 2
Views: 960

Code: Select all

dsjob -ljobs ProjectName
If necessary loop through all projects returned by

Code: Select all

dsjob -lprojects
by ray.wurlod
Thu Nov 29, 2012 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read Excel File in Datastage
Replies: 0
Views: 1592

You need to use a character set that includes the Microsoft Windows "special" characters. Or you could encode them using XML equivalents, and process the data as if it were an XML document.

How are you reading Excel data on a UNIX server?
by ray.wurlod
Thu Nov 29, 2012 10:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import fixed width sequential file without trailing space
Replies: 4
Views: 3871

Derivation Substitution

Here's a useful technique. In the Transformer stage, select all the Char columns that are being mapped to VarChar, right click and choose Derivation Substitution. In the formula field type Trim($1) - this will apply the Trim() function to all the selected derivations.
by ray.wurlod
Thu Nov 29, 2012 7:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning message
Replies: 5
Views: 2968

What is the code page for SQL Server set to?
by ray.wurlod
Thu Nov 29, 2012 7:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Binary values in Transformer
Replies: 3
Views: 2044

If it's truly binary then you could compare it against the value of Char(01).
Tip: evaluate the Char() function once in a stage variable and compare against that value. In ASCII, Char(01) is Ctrl-A. If this doesn't work, then it's not actually a binary value that you're looking at.
by ray.wurlod
Thu Nov 29, 2012 7:55 pm
Forum: General
Topic: DataStage Client Connection issue
Replies: 11
Views: 8595

If the hostname of the services tier can be resolved, what about the hostname of the engine tier?

If these are the same, have you confirmed that all required services are running (server1 on the services tier, ASBNode and Logging agents and DataStage RPC daemon - at least - on the engine tier)?
by ray.wurlod
Thu Nov 29, 2012 5:02 pm
Forum: General
Topic: Sequence loop issue
Replies: 9
Views: 3305

That may be them not reading the log correctly.
by ray.wurlod
Thu Nov 29, 2012 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to LDAP
Replies: 16
Views: 9208

I think the first thing you need to do is to find an LDAP administrator on site from whom you can obtain these details. A Java practitioner would be a good find also. Your lack of experience is telling; learn from those experts.
by ray.wurlod
Thu Nov 29, 2012 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Binary values in Transformer
Replies: 3
Views: 2044

Convert to ASCII then do the comparison.
by ray.wurlod
Thu Nov 29, 2012 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import fixed width sequential file without trailing space
Replies: 4
Views: 3871

To put it another way, because the file is fixed-width, the spaces are part of the data. You must import them, and transform (trim) them subsequently. In DataStage parallel jobs the philosophy is "one task, one stage". The CFF stage reads the CFF, the Transformer (or Modify) stage modifies...
by ray.wurlod
Thu Nov 29, 2012 4:52 pm
Forum: General
Topic: DataStage Client Connection issue
Replies: 11
Views: 8595

Can that user's PC resolve the host name to an IP address (try it with PING from a CMD shell)? If not, edit the hosts file on that PC so that it can resolve the host name.
by ray.wurlod
Thu Nov 29, 2012 4:51 pm
Forum: General
Topic: Mirror Image of InfoSphere environment, possible?
Replies: 2
Views: 948

Certainly when you install "official" HA, host and database aliases are required.
by ray.wurlod
Thu Nov 29, 2012 4:50 pm
Forum: General
Topic: Unable to view job in Folder in Datastage after restart
Replies: 4
Views: 1348

Sync Project should be a part of ISA Lite even in version 8.5.
by ray.wurlod
Thu Nov 29, 2012 4:48 pm
Forum: General
Topic: uniVerse - inline prompt response in Paragraph?
Replies: 1
Views: 703

DATA statement, preferably preceding the command that requires the input. For example:

Code: Select all

DATA RT_LOG
LIST.DICT
by ray.wurlod
Thu Nov 29, 2012 4:46 pm
Forum: General
Topic: Sequence loop issue
Replies: 9
Views: 3305

If not the field mark then it's the empty last line. "" is not a valid pathname. You have to program around that.