Search found 53125 matches

by ray.wurlod
Fri Apr 13, 2007 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing date parameter
Replies: 17
Views: 3703

14347 could well be a DataStage internal format (12 Apr 2007). Try applying an appropriate Oconv() function to get it into the format required in the SQL.
by ray.wurlod
Fri Apr 13, 2007 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing HashFiles
Replies: 12
Views: 2327

Bad code! You go on to attempt ClearFile even if the file is not opened! * Arg1 contains pathname of hashed file. OpenPath Arg1 To hFile On Error ErrorCode = Status() Call DSLogWarn('Error opening "' : Arg1 : '".', "Before Job") End Then ClearFile Arg1 ErrorCode =...
by ray.wurlod
Fri Apr 13, 2007 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters are quoted by DS when passed in when scheduled
Replies: 10
Views: 2930

Were the working ones compiled in an earlier version of DataStage and have not been recompiled since?
by ray.wurlod
Fri Apr 13, 2007 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Lookup
Replies: 4
Views: 1104

Using a Hashed File stage it is only possible to do exact match lookups.

A "closest to" is a complex query, involving a partial key match and a MIN on a date difference, but could probably be performed using a UV stage. Just don't complain about the slowness.
by ray.wurlod
Fri Apr 13, 2007 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence and ORA-00942: table or view does not exist
Replies: 5
Views: 2432

To verify parameters look in the "job starting" event in the job log to see the parameter values that were passed. If these are ALL ok, revisit the encryped parameters. However, this is not your problem. You got an error code and message back from Oracle. Therefore you successfully connected to Orac...
by ray.wurlod
Fri Apr 13, 2007 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract data efficiently
Replies: 4
Views: 1242

Craig's questions are pertinent; without knowing what stage types you are using and data volumes you are dealing with, for example, it would be imprudent to provide advice. What is the basis for the merge? Are the source and target tables in the same database instance?
by ray.wurlod
Fri Apr 13, 2007 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Error selecting from log file RT_LOG862"
Replies: 9
Views: 6511

And so can you mark the thread as resolved?
by ray.wurlod
Fri Apr 13, 2007 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while Importing a job
Replies: 2
Views: 1150

:?:
When you searched the forum for this error message text (perhaps ignoring the specific job number), what did you find?
by ray.wurlod
Fri Apr 13, 2007 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Split Row into columns through Data Stage?
Replies: 6
Views: 4992

Why?

A Pivot stage will do exactly what you require.

With a hashed file, the technique for a horizontal pivot is to load the non-pivoting columns in a value mark delimited dynamic array and to UNNEST that when extracting.
by ray.wurlod
Fri Apr 13, 2007 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improve a difference between two dates
Replies: 7
Views: 4761

Time to mark this thread as resolved.
by ray.wurlod
Fri Apr 13, 2007 3:03 pm
Forum: General
Topic: DSSendMail
Replies: 9
Views: 6286

Look in the Built-In\Utilities category.
by ray.wurlod
Fri Apr 13, 2007 2:59 pm
Forum: General
Topic: Not able to import metadata from Oracle 10g to DS 7.5.1 Vers
Replies: 4
Views: 1889

There was no need to shout. The error message is "failure to connect". Unless you can connect successfully you will not be able to import metadata or do anything else. There is something wrong with your connection request - it might be user ID/password, it might be server name, it might be a misconf...
by ray.wurlod
Fri Apr 13, 2007 2:55 pm
Forum: IBM QualityStage
Topic: Running QS match job from DS
Replies: 12
Views: 3209

There is no command or file in the QS environment to see what command was executed. However the DS job log will report what command was sent - which might prove to be of some use.
by ray.wurlod
Fri Apr 13, 2007 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: px installation on pc
Replies: 6
Views: 1734

You must have the Visual Studio .NET C++ compiler.
by ray.wurlod
Fri Apr 13, 2007 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential processing of Files
Replies: 43
Views: 11929

No. Your requirement (original post) was SEQUENTIALLY.

File Sets and Data Sets are read in parallel.