Search found 15603 matches

by ArndW
Thu Feb 19, 2009 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a file through a routine
Replies: 6
Views: 2266

Craig has already recommend the preferred method, using DataStage to read and work on this file. There are a number of DS/Basic routine calls which let you open, close, read records or even read bytes from sequential files; but they involve a lot of programming and testing unless you have done this ...
by ArndW
Thu Feb 19, 2009 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 4122

Can you compare your two uvconfig files to see if they are identical?
by ArndW
Mon Feb 02, 2009 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance or Multiple jobs?
Replies: 4
Views: 1150

If the job can be run as a multi-instance one then do so; it makes maintenance a lot easier. Some jobs, notably those with output stages that cannot be written to concurrently (i.e. sequential files), do not lend themselves to parallel runs.
by ArndW
Thu Jan 08, 2009 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to read invalid characters from xml
Replies: 12
Views: 3556

What error message is being generated, and from which stage? Do you have NLS installed and if so, which character set are you using?
by ArndW
Thu Jan 08, 2009 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Quick Design Question on the use of shared containers
Replies: 3
Views: 766

This would be a good place for a shared container - as miwinter has already pointed out, it would make maintenance easier as the code is only in one location; this is just the same as using a common subroutine in another programming language. Changes to the shared container only become active when t...
by ArndW
Wed Jan 07, 2009 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find max salary using transformer stage not aggregato
Replies: 2
Views: 2164

Transform stages can use stage variables to store values (i.e. to aggregate or compare values). If you have a stage variable MaxSalary that states "IF In.Salary > MaxSalary THEN In.Salary ELSE MaxSalary" that variable will contain the highest salary encountered in the run so far.
by ArndW
Wed Jan 07, 2009 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job is running for a long time
Replies: 1
Views: 845

Duplicating threads does not help, see your other thread for details.

This thread should be closed.[/url]
by ArndW
Wed Jan 07, 2009 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: all the records not inseting into oracle table
Replies: 1
Views: 734

This could be a deadlock type error. Try
(a) setting your commit frequency to each row, using $APT_ORAUPSERT_COMMIT_ROW_INTERVAL
(b) putting a reject link to your output Oracle to see if you get any errors.
(c) find a DBA to see if you have any Oracle activity or locks while your job is running.
by ArndW
Wed Jan 07, 2009 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information Server 8.01 Startup problem
Replies: 8
Views: 3338

Does a "DB2 CONNECT ..." to the XMETA instance from the command line on the DataStage server work or do you get an error there as well?
by ArndW
Wed Jan 07, 2009 6:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: WHAT ARE THE .TRX,.SSO FILES IN DATASTAGE? WHAT R THEY SIGNI
Replies: 2
Views: 1372

Neither type says anything to me as part of DataStage. Could you post one or two examples with full pathnames (and please STOP SHOUTING AT US).
by ArndW
Wed Jan 07, 2009 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 8.1 - engine / WAS - 64 bit / 32 bit?
Replies: 4
Views: 2723

Aakash - are you still with the same company? I think it was on Solaris that the "file" command gave 32/64 bit information; obviously I was wrong about AIX. I don't know other commands by heart anymore, but if you have "dbx" installed that will tell you. If it is mentioned that 8...
by ArndW
Wed Jan 07, 2009 6:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generation of Ramdom Number
Replies: 2
Views: 1213

I wish I had DS on this machine, at least the documentaton; the function is either "RND()" or "RAND()" but I can't recall which. You can also SEED the series to ensure that you get reproduceable results. As asked before, if you wish to get unique customer IDs then using a random ...
by ArndW
Wed Jan 07, 2009 6:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while displaying data into CSV
Replies: 2
Views: 1217

If you take the problem a step at a time it might turn out to be a simple solution. What text is contained in this field in the CSV file? If you define that field as VarChar of appropriate length, what is displayed in the sequential file stage with view data?
by ArndW
Wed Jan 07, 2009 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW TO WRITE ROUTINES
Replies: 2
Views: 1290

Once again, all capitals is considered SHOUTING. This site is used as a supplement to training and experience and doesn't serve as a complete substitue for it. Writing routines is documented in the literature and taught as part of the DataStage courses. I think that, for the most part, the posters h...
by ArndW
Wed Jan 07, 2009 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW U MAINTAIN THE TIME DIFFERENCE IN TIME DIMENSION IF U
Replies: 2
Views: 1339

Once again, using all capitals is considered SHOUTING, and "U" might be valid on SMS messages but not in a professional forum such as this one. A normal time field contains only a value and no GMT/UTC offset , if you need to account for this then you would need to add it. In some databases...