Search found 15603 matches

by ArndW
Sat Feb 24, 2007 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File error
Replies: 6
Views: 2848

To add to what Ray has stated, the 64BIT option is not available from the hashed file stage creation menu. This can only be done from the TCL or UNIX level.
by ArndW
Sat Feb 24, 2007 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error in job
Replies: 14
Views: 7106

Perhaps the hashed file is broken. Do you have the "clear file" switch turned on in your job? If not, could you try setting it to see if the error goes away (if you can easily re-create the data).
by ArndW
Fri Feb 23, 2007 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding a column to an existing Hashed file ?
Replies: 4
Views: 949

I rather enjoyed writing that answer; it is more fun to say "that's easy to do" than having to explain that it can't be done. Just add the column to the end of your metadata (not anywhere else, as hashed files are positional). This is one of the aspects of hashed files and the UniVerse system which ...
by ArndW
Fri Feb 23, 2007 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding a column to an existing Hashed file ?
Replies: 4
Views: 949

Just "do it". You can add columns to hashed files without any problems. All values for all records existing in the file are going to be the empty string, but that is the only issue you should have.
by ArndW
Fri Feb 23, 2007 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server License Upgrade
Replies: 9
Views: 1803

Always have a complete backup before trying anything that might compromise the installation. I would do a complete backup of all the projects. That way, if this doesn't work you can do a complete re-install with the new license key. When you reinstall you can specify the project paths to the existi...
by ArndW
Fri Feb 23, 2007 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar issues..
Replies: 7
Views: 1834

Unfortunately, there is no builtin or documented way to do this dynamically. The column information is stored in the job details and (if used) in the table definitions file. Neither location is documented or described by Ascential. Instead of "hacking" that information from the repository, could you...
by ArndW
Fri Feb 23, 2007 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server License Upgrade
Replies: 9
Views: 1803

You might also do this from UNIX level. Ensure your "dsenv" is set and that your current working directory is $DSHOME, then issue a

Code: Select all

bin/uvregen {Authorization} -s {SerialNumber} -l {UserLimit} -d {ExpiryDate}
by ArndW
Fri Feb 23, 2007 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with the Data type Char
Replies: 2
Views: 728

DataStage server is not restricted when it comes to data types. There is no "CHAR" datatype inside DS server, everything is a string. If you read a string with length of 5 into DS and write it to a sequential file with a type of CHAR(10) it will not automatically convert that string and pad it with ...
by ArndW
Fri Feb 23, 2007 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server License Upgrade
Replies: 9
Views: 1803

If you are at version 7.5 you should be able to change all the licensing information from the Administrator.
by ArndW
Fri Feb 23, 2007 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why dont we have look-up stage in Datastage Server jobs
Replies: 10
Views: 4746

In DataStage server jobs, the lookup is done via a reference link in a transform stage.
by ArndW
Fri Feb 23, 2007 5:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format Error
Replies: 7
Views: 1917

I just re-read your post and saw that you are using INFORMIX. You need to use the internal date format, so just the ICONV() part to convert your date.
by ArndW
Fri Feb 23, 2007 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Error
Replies: 4
Views: 842

I've not seen that error message before. Can you go into your director and "reset" this job; chances are high that you will have an entry title "from previous run" in your log file after doing this and that it might contain additional information.
by ArndW
Fri Feb 23, 2007 4:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format Error
Replies: 7
Views: 1917

OCONV(ICONV(In.DateStringColumn,'D4MDY'),'D4/DMY[2,2,4]') Note that this does not check for valid dates. Or, as a string solution, In.DateStringColumn[4,3]:In.DateStringColumn[1,3]:In.DateStringColumn[7,4] The latter is faster as it just manipulates string portions.
by ArndW
Fri Feb 23, 2007 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job's previous run time
Replies: 4
Views: 895

You should do this checking in a sequence. You can write your own routine using the following logic:

- call DSAttachJob() to attach to the job
- call the routine DSGetJobInfo() with DSJ.JOBLASTTIMESTAMP
- call DSExecute() to return the file date/timestamp
- compare
by ArndW
Thu Feb 22, 2007 12:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage AND/OR Transformer Function
Replies: 29
Views: 4685

Remember to handle the popular "Llada 4.3L Turbo Tractor" as well.