Search found 15603 matches

by ArndW
Thu Sep 06, 2007 4:39 pm
Forum: General
Topic: DataStage 7x issue
Replies: 5
Views: 1604

Lol, you got me. The funny thing is that we were discussing irrational and imaginary numbers earlier yesterday, which is why the square root of -1 was on my mind --- I just mixed up the two concepts.
by ArndW
Thu Sep 06, 2007 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing the behaviour of Stopped Jobs & After-job routi
Replies: 5
Views: 3701

I think if you call up the after-job job using the command line 'dsjob' instead of the accepted DS/BASIC set of routines you will be successful.
by ArndW
Thu Sep 06, 2007 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: type conversion/ Transformer stage
Replies: 8
Views: 4250

Kavuri, I'm not sure what you are trying to achieve. Do you intend to do a lossless compression of the integer value into a length 12 string? In that case it makes more sense to keep the original 8-bytes and leave them into a fixed 8-byte length string with no conversion (i.e. RAW). Or build up your...
by ArndW
Thu Sep 06, 2007 5:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to export job design
Replies: 3
Views: 1094

Please explain 'unable'. Does that mean you get an error message? Or that the export file is empty? Can you edit the job? Do you have other problems in the project? The list of questions goes on.
by ArndW
Thu Sep 06, 2007 2:50 am
Forum: General
Topic: DataStage 7x issue
Replies: 5
Views: 1604

Sure, irrational numbers. Oh, and my bank account balance (I upgraded from Null())
by ArndW
Thu Sep 06, 2007 1:09 am
Forum: General
Topic: DataStage 7x issue
Replies: 5
Views: 1604

ramjanaki - what you really need is to use the SEARCH button.
by ArndW
Wed Sep 05, 2007 6:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Indexing / Re-Indexing
Replies: 1
Views: 664

The use of indices in UniVerse type database (to which the DS Engine is closely related) is described as part of the IBM UniVerse Documentation . That will give you the technical details on what indices are and how they are manipulated at a very low level. The menu items in DataStage are just calls ...
by ArndW
Wed Sep 05, 2007 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Recover job from file system
Replies: 2
Views: 1029

You cannot get the job back directly from your UNIX level backup, but don't despair - it doesn't take much effort to do so. But you do need a machine running DataStage. 1. Create a new project, giving it any name you want as it is temporary. 2. Restore your original project (perhaps you have already...
by ArndW
Wed Sep 05, 2007 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join 2 tables in DB2
Replies: 8
Views: 2077

If both tables are in the same instance of DB2 you should just use the join SQL. If I have interpreted the question correctly, you might be better off doing a lookup on table DEF for the main input stream ABC.
by ArndW
Wed Sep 05, 2007 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Doubts Solaris X86 and DataStage 7.5.2 EE
Replies: 4
Views: 2013

DataStage doesn't need to be installed from the CD. What are the permissions on the file "/tmp/dsinstall/.dsinstall"?
by ArndW
Wed Sep 05, 2007 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join 2 tables in DB2
Replies: 8
Views: 2077

Kavuri, as the message states, you have a nullable column and your database DDL states that the same column is not nullable. You need to make sure that null values cannot be present in that column. One way is via a modify stage. Another is to use a function like NullToValue(), NullToEmpty(), NullToZ...
by ArndW
Tue Sep 04, 2007 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error and no default value for only one column?
Replies: 10
Views: 6856

It quite definately is empty and not null. Sequential files don't have null columns.
by ArndW
Tue Sep 04, 2007 11:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error and no default value for only one column?
Replies: 10
Views: 6856

Are you sure that it is getting a null value or just an empty value?
by ArndW
Tue Sep 04, 2007 11:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error and no default value for only one column?
Replies: 10
Views: 6856

Is this the first column of that datatype? If so, then it is probably because the engine parses left-to-right and stop when it encounters the bad one.
by ArndW
Tue Sep 04, 2007 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To set default properties
Replies: 1
Views: 515

I think your best bet here would be to export the job and write an editor macro (one reason I love EMACS) for the .dsx file to make these changes. I think you can set default per datatype, but not for datatype/length combinations.