Search found 53125 matches

by ray.wurlod
Mon Dec 10, 2007 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Menu Lost
Replies: 8
Views: 1689

Try Alt-V (the hot key for the View menu).
by ray.wurlod
Mon Dec 10, 2007 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to see performance monitor for parallel job
Replies: 7
Views: 4663

Starting is not your problem. You are not checking that everything is properly shut down before trying to re-start.
by ray.wurlod
Mon Dec 10, 2007 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrong Job Status in Director
Replies: 2
Views: 1026

It is possible in parallel jobs for this situation to obtain, because the "fatal" error applies to a player process yet the conductor process (which is the only process writing to the log) is not affected.

Return code 0 means "running". I don't believe you have that right.
by ray.wurlod
Mon Dec 10, 2007 1:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Failed to initialize job monitoring
Replies: 2
Views: 3866

Welcome aboard. Search the forum for JobMonApp.
by ray.wurlod
Mon Dec 10, 2007 1:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: not all variables bound when running job
Replies: 1
Views: 603

You have a different number of columns defined in your job than the number of columns indicated by parameter markers in your SQL.
by ray.wurlod
Mon Dec 10, 2007 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run error - '429' ActiveX component can't creat object
Replies: 2
Views: 1743

Blame Bill Gates then re-boot Windows.
by ray.wurlod
Mon Dec 10, 2007 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 10
Views: 3554

The point is that a timestamp has at least 19 characters, not 10.
by ray.wurlod
Mon Dec 10, 2007 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CREATE.FILE usage for 64 bit hashed files
Replies: 30
Views: 7576

You can create the hashed file and its dictionary with a single CREATE TABLE command. CREATE TABLE hashedfilename DATA pathname_of_hashedfilename DICT pathname_of_D_hashedfilename ( column_definitions... ) ; RESIZE hashedfilename * * * 64BIT (You can probably include the 64BIT option in the ...
by ray.wurlod
Mon Dec 10, 2007 12:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any alternative for Substrings function?
Replies: 2
Views: 856

Substring and concatenation is almost certainly the most efficient. Arithmetic (with Int() and Mod() functions) will be a close second.
by ray.wurlod
Mon Dec 10, 2007 12:56 pm
Forum: General
Topic: I want to get an output as how many records has populated fr
Replies: 3
Views: 924

Create another link in your job using a Copy stage. Add a Column Generator to generate 1 for every row. Add an Aggregator to total these 1's. Write the result to your file.
by ray.wurlod
Sun Dec 09, 2007 4:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL0443N Routine "SYSIBM.SQLTABLES" (specific nam
Replies: 4
Views: 3285

Do you have SELECT privilege on the system tables that DataStage needs to access? Search the forum, or your documentation, to find out which these are.
by ray.wurlod
Sun Dec 09, 2007 4:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Genarting n nuber of rows from single row
Replies: 3
Views: 1499

Are you seeking an FAQ on this topic or should you have posted your question in the parallel forum?
by ray.wurlod
Sat Dec 08, 2007 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Double and Float
Replies: 1
Views: 965

The reason is that floating point numbers can not be stored accurately in computers - there are always precision issues. Search the web to find thousands of articles on this subject. (Double is also floating point.) To lock in a decimal representation convert the floating point data to Decimal upstr...
by ray.wurlod
Sat Dec 08, 2007 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Save Job
Replies: 7
Views: 2701

I suspect that EditServ.impl.JobDefnImpl@79427df4 is a name used in the common repository for Information Server. Check with IBM whether you also need to re-index that repository.
by ray.wurlod
Sat Dec 08, 2007 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: convert text format to binary format
Replies: 1
Views: 890

That's because it's a very strange requirement. WHY do you need to convert data to binary format, and what particular binary format is needed? There is more than one possible binary format. In short, please post the official specification that "they" have given you.