Search found 53125 matches

by ray.wurlod
Thu Apr 12, 2012 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DNS less - access Excel odbc
Replies: 1
Views: 1172

You'll always need a DNS (or some other way of resolving host names to IP addresses).

Whether or not you need a DSN (data source name) is a different question. :wink:
by ray.wurlod
Thu Apr 12, 2012 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CHECKSUMSTAGE
Replies: 15
Views: 6221

A 32-bit checksum will be equal for different strings with a probability of about one in four million. If this is unacceptable use a different mechanism, maybe a 64-bit checksum.
by ray.wurlod
Thu Apr 12, 2012 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: in stmt
Replies: 5
Views: 1500

No, it avoids US being confused with AUS, for example.
by ray.wurlod
Thu Apr 12, 2012 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DRS Stage Could not find input field
Replies: 10
Views: 4557

Try quoting the column name and the table name.
by ray.wurlod
Wed Apr 11, 2012 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Import problem
Replies: 5
Views: 2425

Are there any recent patches for Connector Access Service? (I can't check easily at the moment.)
by ray.wurlod
Wed Apr 11, 2012 11:31 pm
Forum: Cognos (IBM BI)
Topic: Viewing BG Terms from Cognos
Replies: 6
Views: 10848

A little bit of research later...

The first URL is the Information Center for IBM Cognos BI version 8.4. http://publib.boulder.ibm.com/infocenter/c8bi/v8r4m0/index.jsp Execute a Search for "Business Glossary" - a number of links of varying usefulness will appear on the left-hand side. The second URL is the instructions for...
by ray.wurlod
Wed Apr 11, 2012 11:09 pm
Forum: Cognos (IBM BI)
Topic: Viewing BG Terms from Cognos
Replies: 6
Views: 10848

I would imagine that the appropriate Glossary URI would be http://hostname:9080/bg (or some subset thereof) but, presumably, you also need to configure Cognos with a user name and password. Maybe the hostname and port number are configured with separate properties. Not really my area of expertise.
by ray.wurlod
Wed Apr 11, 2012 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ftp multiple file using the ftp stage
Replies: 9
Views: 9067

None of the FTP stage types in DataStage support MPUT, as far as I am aware. The FTP stage supports transferring a stream of data, not a file. Multiple GET streams are possible, again as far as I am aware.
by ray.wurlod
Wed Apr 11, 2012 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "will partition" warning
Replies: 2
Views: 1950

APT_CreateOp is the operator that creates the virtual data set (the in-memory table) against which lookups will be performed, and builds an index for it unless the source is a Lookup File Set. APT_CreateOp is one of two operators in a composite operator created by virtue of the Lookup stage in the j...
by ray.wurlod
Wed Apr 11, 2012 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extra empty record getting insert after ftp'ing
Replies: 2
Views: 1510

Are there carriage return or line feed characters (other than record delimiters) in the source data?
by ray.wurlod
Wed Apr 11, 2012 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: complex logic
Replies: 7
Views: 2335

Stay with the Lookup stage. Make use of conditional lookup to determine whether an upstream lookup has succeeded or not.
by ray.wurlod
Wed Apr 11, 2012 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Link for Complex Flat File stage.
Replies: 3
Views: 2263

Drag an output link from the stage. Right click the link and choose "Convert to Reject" from the menu.
by ray.wurlod
Wed Apr 11, 2012 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with ODBC stage
Replies: 8
Views: 2619

Jayanto wrote:Post downloading the Fix, what should be the next course of action...??
Read the readme file that accompanies the fix.
by ray.wurlod
Wed Apr 11, 2012 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ds_ipcgetnext() timeout waiting for mutex
Replies: 19
Views: 9587

Ignore everything in the error message after "timeout". Everything else is about the mechanism. The problem is in the inter-process communication (ipc) function that gets the next buffer-ful of data. It has exceeded its wait interval. Why? There are a number of possible reasons, but they u...
by ray.wurlod
Wed Apr 11, 2012 4:24 pm
Forum: General
Topic: wait for file activity stage issue
Replies: 2
Views: 1732

Another possibility is to use an ls command to detect whether there is any file matching the pattern. Exit status will be non-zero if there is no file. Use command line options on the ls command to get the most recent one to the top of the list, and capture that file name. ls -1rt home/app/test_data...