Search found 53125 matches

by ray.wurlod
Sat Oct 28, 2006 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: All objects in the Job become PLUG objects.
Replies: 9
Views: 3122

That normally happens when the client machine is running out of memory. Close some other windows and/or re-boot. In particular, it is NOT a problem on the server. You have sent your DataStage support people on a wild goose chase.
by ray.wurlod
Sat Oct 28, 2006 4:36 pm
Forum: Enhancement Wish List
Topic: Data Element returned by DSGetLinkMetaData()
Replies: 0
Views: 1374

Data Element returned by DSGetLinkMetaData()

Data Elements are the place where you record the business metadata associated with a business term, such as Customer, Money, Telephone Number, and so on. Most developers up to version 7.5 have ignored Data Elements as they do not realize the importance of business metadata. With the availability of ...
by ray.wurlod
Sat Oct 28, 2006 2:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: adding column names to reject file
Replies: 15
Views: 3482

Surely that's why the RMM stage exists? :lol:
by ray.wurlod
Sat Oct 28, 2006 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting Reader per node on sequential file
Replies: 10
Views: 4982

Yes, N times on the same node. On each node, if more than one. Each reader process reads 1/Nth of the rows from the file. Multiple readers per node is a technique for applying more than one process to reading a sequential file (which has to be read sequentially). At the beginning the size of the fil...
by ray.wurlod
Sat Oct 28, 2006 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Start Loop
Replies: 7
Views: 1653

Create a delimited list of dates in an upstream Routine, and use that as the driver for a List loop. Error handling has been omitted here for clarity. FUNCTION ListOfDates(StartDate,EndDate) intStartDate = Iconv(StartDate, "DYMD") intEndDate = Iconv(EndDate, "DYMD&...
by ray.wurlod
Sat Oct 28, 2006 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VARCHAR TO DATE CONVERSION
Replies: 3
Views: 1386

Depending on your Oracle date picture, you may need "-" instead of "/".
by ray.wurlod
Sat Oct 28, 2006 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reset the jobs
Replies: 6
Views: 1591

Create your batch as a job sequence and use "Reset if required, then run" as the run method in each Job activity. That will do it for you. Optionally inspect the generated job control code, look for calls to DSPrepareJob() - this is how you would do it if you cut your own code. From the traditional ...
by ray.wurlod
Fri Oct 27, 2006 5:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range look up with UV stage
Replies: 7
Views: 2207

What you should do is lie about which columns are the keys. Here you want DataStage to generate a WHERE clause containing your key columns. So tell it that Src_Date is a key column and that Copy_Of_Src_Date (organize this how you will) is also a key column.
by ray.wurlod
Fri Oct 27, 2006 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replacing null column with some value and assigning a keyval
Replies: 20
Views: 4451

To perform a lookup you have to have something in your source table that you can use a key into the reference table - it does not appear that your design fulfils this criterion. I believe you are trying to accomplish two things - to generate a sequential key where FIRST_NAME and LAST_NAME both exist...
by ray.wurlod
Fri Oct 27, 2006 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data issues
Replies: 6
Views: 1577

You need to know what every byte in the stream is. The advice from rparimi is sound, and you need to be able to handle what ever is in the file. If that means forcing "them" to supply validly quoted character strings, then that's what it will take.
by ray.wurlod
Fri Oct 27, 2006 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: There are no sort keys in the dataset schema
Replies: 7
Views: 4753

You change the metadata you remove the linkage into the collection of sort keys. Delete the Data Set, then re-run the job that populates it, and all should be well.
by ray.wurlod
Fri Oct 27, 2006 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i am getting this fatal error
Replies: 7
Views: 3119

It's one of the basic UNIX signals. Try man signal or man -k SIGSEGV command to learn more.
by ray.wurlod
Fri Oct 27, 2006 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upserting data into teradata table
Replies: 4
Views: 1578

:? Why don't you want to use the MultiLoad stage?
by ray.wurlod
Fri Oct 27, 2006 1:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: executing parallel jobs in stand alone machine
Replies: 4
Views: 1194

EE is perfectly fine on a sufficiently configured laptop. 2GB memory, very fast CPU, lots of disk (maybe even a flash disk to augment same).