Search found 53125 matches

by ray.wurlod
Wed Feb 11, 2004 7:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Environment variables!
Replies: 5
Views: 1700

Re: Environment variables!

milind wrote:Can anybody please reply on this one soon.

Thanks
See http://www.dsxchange.com/viewtopic.php?t=86415

I'm working on a 5.2 site this week and can't answer the question.
by ray.wurlod
Wed Feb 11, 2004 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log
Replies: 8
Views: 2383

Yes, but why would you want to?
by ray.wurlod
Wed Feb 11, 2004 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling hierarchical file in DataStage 6.0
Replies: 5
Views: 3186

Simply put, you can read the file with a Sequential File stage set to read 80 columns, pipe delimited. In the Columns grid in the Sequential File stage scroll to the right and change the missing columns rules for columns 11 through 80 from Error to Replace (work from the bottom up; there is a hierar...
by ray.wurlod
Wed Feb 11, 2004 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date selection criteria in Unidata stage
Replies: 7
Views: 1856

This looked like it was working, but I have recently found out that not all of the data is being pulled over. The Unidata field is multi valued, does this affect the selection statement? Yes it can, depending on what columns (fields, in UniData parlance) you're extracting. If you want to limit the ...
by ray.wurlod
Wed Feb 11, 2004 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date selection criteria in Unidata stage
Replies: 7
Views: 1856

Yes, there is. YOU control it, with the specification in OCONV. For example:

Code: Select all

WITH OIC_RECEIVED_DATE >= EVAL "OCONV(@DATE-1, 'D/MDY[2,2,4]') OR OIC_SYSTEM_DATE >= EVAL "OCONV(@DATE-3, 'D/MDY[2,2,4]')"  
by ray.wurlod
Wed Feb 11, 2004 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance Jobs
Replies: 2
Views: 962

Look in the Status view in Director. You should see three jobs. Batch::Job1 Batch::Job1. Instance1 Batch::Job1. Instance2 You can switch to the Log view after selecting any of these, and see the events just for that instance. (It this is not the case, there may be some special way that job names sta...
by ray.wurlod
Wed Feb 11, 2004 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 64BIT Hashed Files
Replies: 27
Views: 8641

No, but it's the safest and, imho, the quickest. The "official" way is to examine the magic number of DATA.30; there's a bit set in there to indicate whether 32-bit addressing or 64-bit addressing is in effect. You can also inspect it with things like hex editors such as filepeek but I'd counsel aga...
by ray.wurlod
Wed Feb 11, 2004 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: GRANT and UNIVERSE TABLE.
Replies: 4
Views: 1025

Show us the exact command you put in the Input Value field when you used ExecTCL. I've done hundreds of these. Also tell us why you believe it didn't work, and post the detailed log event generated by ExecTCL. Please start a separate thread for the question about executing multiple commands via Exec...
by ray.wurlod
Wed Feb 11, 2004 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create Universe table
Replies: 5
Views: 1702

Re: Create Universe table

How can I create a universe table directly in Designer with Universe Stage?? Because I don't have the administrator access. You don't need administrator access. In the UV stage just check the "create table" box. You can even use the Administrator client, even though you don't have the admin passwor...
by ray.wurlod
Tue Feb 10, 2004 11:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 64BIT Hashed Files
Replies: 27
Views: 8641

Interestingly, or not, lunch today was the misspelled "Geek salad". :lol:
by ray.wurlod
Tue Feb 10, 2004 8:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file issue
Replies: 7
Views: 1660

The space character in data is just another character. It should not generate any problem in retrieving data. Your data browser never tries to insert anything. The error message is not occurring when you're browsing the data. It's occurring when you run the job, when the job is trying, somewhere, to...
by ray.wurlod
Tue Feb 10, 2004 8:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe
Replies: 4
Views: 1675

CREATE TABLE and CREATE INDEX statements can be executed from the Administrator client's Command window. CREATE TABLE can, alternately, be executed automatically by the UV stage, but you don't get your columns indexed.
by ray.wurlod
Tue Feb 10, 2004 8:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe
Replies: 4
Views: 1675

Set your data source to localuv.
The user and password fields are then disabled, because DataStage is automatically connected to the localuv data source.
by ray.wurlod
Tue Feb 10, 2004 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe
Replies: 4
Views: 1675

If the hashed file already exists, you can access it using a UV stage without making any other changes. If it doesn't exist, and you use a UV stage with "create table" checked, what you get created is a hashed file. That is, every UniVerse table is a hashed file. The UniVerse database uses hashed fi...
by ray.wurlod
Tue Feb 10, 2004 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file issue
Replies: 7
Views: 1660

You can not insert rows into a hashed file without supplying a value for the key column. Exception: If the hashed file was created as a UV table with automatically generated key column, you can. I expect that this is not the case here. How? CREATE TABLE tablename ( PKCOL INTEGER NOT NULL DEFAULT...