Search found 53125 matches

by ray.wurlod
Mon Dec 22, 2008 1:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC connectivity to datastage server
Replies: 6
Views: 2310

Do you mean TO your DataStage server from something external, or from your DataStage server to some data source?

The first would require an ODBC driver for DataStage Engine, and no such animal exists. Nor is ever likely to.
by ray.wurlod
Mon Dec 22, 2008 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not accepting NULLS while using IsValid or NUM functions
Replies: 7
Views: 1695

Well, some progress has been made. Now you have to work out why the IsValid() function is reporting your "numeric" data not to be valid as 32-bit integers. Look for non-printing characters in the date. Try the IsValid() function with "uint32" as its second argument.
by ray.wurlod
Mon Dec 22, 2008 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: substract 10 seconds from dsjobstarttimestamp
Replies: 5
Views: 1451

.. or right-click and choose Save As to download the DSX file.
by ray.wurlod
Mon Dec 22, 2008 1:22 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Connection refused to port 50000
Replies: 2
Views: 2259

That is indeed a curious error message, particularly since it is being emitted by the IBM Oracle JDBC driver. Perhaps this uses port #50000 internally (but only IBM could verify this for sure). I assume that your firewall does not pass this port number.
by ray.wurlod
Mon Dec 22, 2008 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Two Db2 instances
Replies: 1
Views: 980

This forum is not for explicit questions about parallel jobs. This forum is for suggestions for topics for the FAQ forum. Please post your question in the correct forum. Or Search first; you may even find your answer without even needing to post a question!

*Note: Topic Relocated - Content Editor*
by ray.wurlod
Sun Dec 21, 2008 10:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to stop datastage
Replies: 13
Views: 2592

There are other things happening than shared memory segments, and this only gets more complicated when you move to version 8. The main hazard with removing the shared memory segments (other than needing the root login ID) is making sure you get them all - but then what about the semaphores and other...
by ray.wurlod
Sun Dec 21, 2008 10:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not accepting NULLS while using IsValid or NUM functions
Replies: 7
Views: 1695

What if you use something like the following for an int8 result?

Code: Select all

If IsNull(InLink.TheString) Then -1 Else IsValid(InLink.TheString, "int32")
by ray.wurlod
Sun Dec 21, 2008 7:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: substract 10 seconds from dsjobstarttimestamp
Replies: 5
Views: 1451

Click on the "Yes" - it's a link to a library of server job routines.
by ray.wurlod
Sun Dec 21, 2008 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not accepting NULLS while using IsValid or NUM functions
Replies: 7
Views: 1695

Regard all Transformer stage functions as intolerant of null. Please be specific about what you tried and what you mean by "doesn't work" (including any error message). The approach that was suggested will work, provided that the Else clause is complete. You don't need SetNull() in the The...
by ray.wurlod
Sun Dec 21, 2008 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to stop datastage
Replies: 13
Views: 2592

You can also find information about the effects of potassium cyanide on the net, but you wouldn't eat it. Be very, very careful with any form of "kill".
by ray.wurlod
Sun Dec 21, 2008 1:43 pm
Forum: General
Topic: Combining 2 tables into a 1 file with differing MetaData
Replies: 11
Views: 2018

santhob, this is stock-standard SQL. (Yes, it's the concatenation operator.) It appears that undertaking some SQL training would be beneficial for you.
by ray.wurlod
Sun Dec 21, 2008 1:42 pm
Forum: General
Topic: Configuration file
Replies: 4
Views: 1296

Have you taken any formal DataStage training? This is exactly the kind of thing you would learn on the DataStage Essentials class (or equivalent).
by ray.wurlod
Sun Dec 21, 2008 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using trim
Replies: 7
Views: 2437

Trim() with only one argument trims leading, trailing and redundant white space characters, exactly as described in the documentation.
by ray.wurlod
Sun Dec 21, 2008 4:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC/Coding issue
Replies: 3
Views: 1615

Pno and Mat does not give you a unique return result from the lookup. Did you enable multi-row return from the lookup? Otherwise, to get a unique result, include SDate as a lookup key, since this is also available in your source.
by ray.wurlod
Sat Dec 20, 2008 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using trim
Replies: 7
Views: 2437

Square brackets indicate optional parts of the syntax. Trim() is a function, so the argument list is surrounded by parentheses, not square brackets. The third argument to Trim() must be a literal string (that is, quoted) or the name of a variable. In your case Trim(Expression, " ", "B...