Search found 15603 matches

by ArndW
Mon Jul 09, 2007 7:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Premium Membership: Can the amount be reduced?
Replies: 4
Views: 952

I prefer to look at the price as a matter of time instead of as a dollar (or yen) amount. Nobody here is using DataStage as a hobby, everyone interested in DataStage is going to be using it as part of compensated work. Take your salary and compute your hourly wage. Then compute how many hours of wor...
by ArndW
Mon Jul 09, 2007 7:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop and Trim columns
Replies: 4
Views: 1060

Or turn off runtime column propagation for the modify stage and only KEEP the one column you are interested in.
by ArndW
Mon Jul 09, 2007 5:33 pm
Forum: General
Topic: regarding subroutine in parallel jobs
Replies: 7
Views: 2429

Ray - that is what I first wrote, but then realized that the routines are the same ONLY for before/after job subroutines, and that wasn't what the poster was asking.
by ArndW
Mon Jul 09, 2007 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup stage
Replies: 14
Views: 4573

I am not quite sure of what you are doing, so I cannot answer directly. The lookup stage needs to match the source and target columns in order to work. In you case, what is the data type and format of the main data stream and what is the data type and format for the reference. Is the reference the X...
by ArndW
Mon Jul 09, 2007 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Issue
Replies: 17
Views: 5335

Try converting all of your COMP fields to correctly sized PIC(x) columns and read the data, see if the contents of COMPANY and DIVISION remain correct - in that case you have correct length. Then change one COMP-3 at a time and see if the conversions work.
by ArndW
Mon Jul 09, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Issue
Replies: 17
Views: 5335

Odd - co you have one import of the copybook into your DataStage metadata and are inserting that definition into both jobs?
by ArndW
Mon Jul 09, 2007 4:00 pm
Forum: General
Topic: regarding subroutine in parallel jobs
Replies: 7
Views: 2429

[quote="arun_kumar]...But writing subroutine in server jobs is completely diffr from parallel...[/quote]
It is different, Server jobs require DS/Basic knowledge, PX jobs require C or C++ knowledge.
by ArndW
Mon Jul 09, 2007 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Precision and Scale for Stage variables
Replies: 2
Views: 1035

When you define a Decimal they do. You can check the generated c++ after a compile and see where the precision and scale are used when defining the stage variables.
by ArndW
Mon Jul 09, 2007 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View generated objects
Replies: 7
Views: 1730

Compiling a DataStage job generates several types of objects, only some of which can be seen at an OS level. Some of the generated code are OSH scripts (i.e. a specialized scripting language) and transform stages are actually c++ programs and object code.
by ArndW
Mon Jul 09, 2007 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BATCH file to delete DATASETS
Replies: 7
Views: 2868

There is no ready-made BATch file to do this, the posters have just supplied the raw command that will clean up a dataset and you will have to write an appropriate file. If you have orphaned datasets, i.e. where someone has deleted the descriptor file without using orchadmin rm , you can look at thi...
by ArndW
Mon Jul 09, 2007 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SEQUENCER
Replies: 3
Views: 1112

One job can only run once at a time unless you specify that it is multi-instance. There are considerations you need to cater for when writing a multi-instance job, i.e. such as making sure that you don't write to the same sequential file as the other instances of the job.
by ArndW
Mon Jul 09, 2007 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Issue
Replies: 17
Views: 5335

The PIC X column, ARS-NAME, shouldn't cause problems. If it does, it probably means that your record length is off and binary information is being parsed as part of that string, most likely your definition is shorter than the real data and the contents of the subsequent COMP-3 field are coming into ...
by ArndW
Mon Jul 09, 2007 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage warnings
Replies: 3
Views: 976

Any time you get a 'dropping component' warning it means that DS thinks it has two columns of the same name going downstream; and in most cases this is because you have ntime column propagation turned on. You should fix this in your code to get rid of the warning. Sequential files can only be proces...
by ArndW
Mon Jul 09, 2007 3:24 pm
Forum: General
Topic: How DS processes are managed?
Replies: 3
Views: 1568

DataStage Server and PX allocate resources in different ways. You posted with a product of Server so we'll stick with that side of things. The configuration of the Server environment is controlled principally through the settings in the UVCONFIG file and in most cases the default settings are also t...
by ArndW
Mon Jul 09, 2007 3:11 pm
Forum: General
Topic: How to send SMS about the status of sequence job?
Replies: 6
Views: 2505

There is no builtin SMS send utility in DataStage, but most service providers have utlities that redirect email to SMS. Since you can call programs from DataStage and all mail utilities that I know of have some sort of command line interface you can solve your problem that way. DataStage even comes ...