Search found 53125 matches

by ray.wurlod
Mon Mar 29, 2010 11:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while viewing the data in sequential file
Replies: 12
Views: 4019

The easiest way is to use the ping command on the server.

Code: Select all

ping DDC2-97752ZE 
by ray.wurlod
Mon Mar 29, 2010 8:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage - Conversion
Replies: 6
Views: 3364

Or a Modify stage using handle_null() !

But there's no Modify stage equivalent of the IsValid() function. :(
by ray.wurlod
Mon Mar 29, 2010 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace function
Replies: 2
Views: 1835

You could use the parallel Ereplace() function published on DSXchange, but what happens if other placemarkers (for example &apos; or &euro;) occur? Maybe a better approach would be to pre-parse the HTML with a parser specifically for that task (or a routine that you write, but why re-invent ...
by ray.wurlod
Mon Mar 29, 2010 4:36 pm
Forum: General
Topic: Make UNIX command disappear from the job log
Replies: 9
Views: 4105

All before/after subroutines are server routines, whether they're called from server jobs or parallel jobs. They can not be called directly from sequences but a simple interlude could be constructed. FUNCTION ExecSHSilentInterlude(Arg1) ErrorCode = 0 Call ExecSHSilent(Arg1, ErrorCode) Ans = ErrorCod...
by ray.wurlod
Mon Mar 29, 2010 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Right Function
Replies: 11
Views: 4106

It's padded with something - probably 0x00 characters. What is the value of APT_STRING_PADCHAR environment variable?
by ray.wurlod
Mon Mar 29, 2010 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup on column with variable number of strings
Replies: 32
Views: 5965

Yes you can. But the code will be completely different - you will need to read the flat file into memory and search it there, probably (if it's a BASIC routine) using the FindStr() function. An example of using this function was posted not long back - certainly this year.
by ray.wurlod
Mon Mar 29, 2010 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while viewing the data in sequential file
Replies: 12
Views: 4019

Is the host name DDC2-97752ZE resolvable to an IP address from your DataStage server?
by ray.wurlod
Mon Mar 29, 2010 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to establish connection to DB2 server from DS client
Replies: 1
Views: 1179

Have you read the manual on DB2 connectivity for DataStage? It's quite comprehensive.
by ray.wurlod
Mon Mar 29, 2010 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Startup Time taking too long
Replies: 3
Views: 2021

Does the SELECT statement include any blocking operation, such as GROUP BY, DISTINCT or ORDER BY?
by ray.wurlod
Mon Mar 29, 2010 1:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invoking Mainframe Stored Procedure
Replies: 2
Views: 1167

What database?

For example, if it's DB2, you can call the stored procedure through DB2 Connect.
by ray.wurlod
Mon Mar 29, 2010 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pulling Scheduled Jobs from repository.
Replies: 3
Views: 1321

The schedule is not stored in the repository at all. You can execute an AT command (in a DOS shell) to see the schedule.

Or, of course, from Director client schedule view. From there you can print or print to file.
by ray.wurlod
Mon Mar 29, 2010 1:30 pm
Forum: General
Topic: Make UNIX command disappear from the job log
Replies: 9
Views: 4105

You could always create your own before/after subroutine, which does not put the entry into the log. Adapt the code of whatever routine you're currently using.
by ray.wurlod
Mon Mar 29, 2010 1:29 pm
Forum: General
Topic: Lookup warning-Ignoring duplicate entry at table record
Replies: 7
Views: 32393

I assume, because the thread is marked as Resolved, that you found it (a drop-down list on the Constraints page).
by ray.wurlod
Mon Mar 29, 2010 3:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Right Function
Replies: 11
Views: 4106

With what character is the Char(15) field padded? Is it possible that Trim() is having no effect?
by ray.wurlod
Mon Mar 29, 2010 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read the TIFF(Tagged Image File Format) files
Replies: 3
Views: 1375

What are you proposing to do with them after you've read them? DataStage is an ETL tool - what transformation is possible with a TIFF file?

Resist stupid requirements!!!