Search found 53125 matches

by ray.wurlod
Sun Dec 06, 2009 9:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading indexed files using datastage
Replies: 2
Views: 1452

Moderator: please move to parallel forum
by ray.wurlod
Sun Dec 06, 2009 9:38 pm
Forum: General
Topic: Maximum number of workflows which can be given in Parallel
Replies: 7
Views: 2379

= Orchestrate step
by ray.wurlod
Sat Dec 05, 2009 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage 7.5v2 is not taking credential on my Laptop
Replies: 3
Views: 938

Have you installed all components, or only the client, on your laptop?

Have you checked (use DataStage applet in Control Panel) that all required services are running?
by ray.wurlod
Sat Dec 05, 2009 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can't open join stage properties
Replies: 5
Views: 2708

Welcome aboard. What has changed since you could open stage properties? For example, what other software has been installed?
Are you running on Windows XP sp 2 and, if so, have you installed the DataStage patch for XPsp2?
by ray.wurlod
Fri Dec 04, 2009 11:41 pm
Forum: General
Topic: User inserted sort does not fulfill sort requirements
Replies: 1
Views: 7017

Doesn't the DSXchange Search link work for you?
by ray.wurlod
Fri Dec 04, 2009 11:38 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: DB2 connectivty problem
Replies: 2
Views: 1982

Is the schema name truly PDB2? Is the owner name truly DSN8710? Is the table name really DEPT? Is there really a column named DEPTNO in the DEPT table?

What happens if you do not qualify the column name? For example

Code: Select all

SELECT DEPTNO FROM PDB2.DSN8710.DEPT ;
by ray.wurlod
Fri Dec 04, 2009 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart sequencer after abort
Replies: 13
Views: 5984

DataStage would commit 2000 and then rollback 50 when the abort occurs.
by ray.wurlod
Fri Dec 04, 2009 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: .CSV - cannot view the data
Replies: 8
Views: 3401

Please mark this topic as Resolved using the green button at top.

**Note: Topic Relocated by Content Editor **
by ray.wurlod
Fri Dec 04, 2009 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in
Replies: 33
Views: 22793

Ah, the old "make sure your umask is 002 before installing" trick! There is a script within DataStage (I can't recall where) for resetting vital permissions; anything else you can use appropriate operating system commands.
by ray.wurlod
Fri Dec 04, 2009 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Querying DS Metadata
Replies: 3
Views: 1926

Yes.

Do you have Metadata Workbench in your mix of products? (Probably not because you're on version 8.0.)

There are myriad examples posted on DSXchange of getting design information out of the DataStage repository. Why not Search for them?
by ray.wurlod
Fri Dec 04, 2009 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help needed
Replies: 6
Views: 1747

Please inform your "friend" that that is not the way in which DataStage works. All stages (operators in player processes) are started when the job starts. This allows for immediate pipeline parallelism to occur.
by ray.wurlod
Fri Dec 04, 2009 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencer
Replies: 14
Views: 3927

For anyone to send you these manuals would be a violation of their licensing agreement and incur the wrath of IBM (which is never desirable). If you have the software, you have the manuals. If you can download the software (for example from Partner World) then you can download the manuals).
by ray.wurlod
Fri Dec 04, 2009 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration from DS 8.0 to 8.2 - Help required
Replies: 8
Views: 1876

Presumably this information about the roadmap came from the IBM Information on Demand conference in October 2009. Did you heed the caveats that accompanied these presentations? Also, IBM were being very coy about the numbering of the next release at that conference.
by ray.wurlod
Fri Dec 04, 2009 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between sparse lookup vs normal lookup?
Replies: 2
Views: 2538

Have you bothered to Search for the answer?
by ray.wurlod
Fri Dec 04, 2009 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project Default formatting
Replies: 15
Views: 6562

Yes. The StringToTimestamp() function will fail before the IsValid() function is even executed, if the source column is not a valid timestamp based on the given format string. You need to test with IsValid() first. And in this case you probably need two tests, one for each format.