Search found 15603 matches

by ArndW
Wed Jun 29, 2005 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 20630
Replies: 4
Views: 1567

Although it is possible to track down the approximate source line where this is occuring, it is usually much faster to look at your job, and in every transform look at the columns where you perform data manipulation, especially mathematical operations. As Sainath stated, most likely you are performi...
by ArndW
Wed Jun 29, 2005 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pointing to Z_RFC_DS_SERVICE function
Replies: 3
Views: 1049

gpbarsky,

I think this name cannot be changed, it is the remote-function-call to/from SAP and is, I think, hard-coded.
by ArndW
Wed Jun 29, 2005 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: complex flat file
Replies: 3
Views: 982

Logic, Cobol fields are stored as clear-text except when they have an explicit "COMP" attached to the picture. The S9(6)V9(4) SIGN IS LEADING produces data such as '-3625418671' - a leading sign either - or space, plus 9 digits with the decimal point being assumed to be between positions 6 and 7. Th...
by ArndW
Wed Jun 29, 2005 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Filter + Multi Xforms" vs "Xform + Multi Con
Replies: 6
Views: 1647

Since the Transform is the slow stage you want to avoid using it. It looks like you can't avoid using it to do your mapping of continents, so stick with the first solution that only uses one transform. I took a look at the column generator functionality to see if one could put a strimg algorithm in ...
by ArndW
Wed Jun 29, 2005 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: order a job for each filename inside a directory
Replies: 8
Views: 2164

jsgoncalves,

I would write a Sequence. use the ExecuteCommand stage to get the "dir...." results of looking into a directory, and then with the Loop (start&end) go through each element in this list and use a JobActivity stage in the middle to call up your job.
by ArndW
Wed Jun 29, 2005 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output file full--File size limitation?
Replies: 5
Views: 1457

dsedi,

you are welcome - but could you post what the problem really turned out to be and how you solved it? That will make the search functionality work much better for anyone with the same or a similar problem.
by ArndW
Wed Jun 29, 2005 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime column propagation
Replies: 8
Views: 2343

Martin, one of the strengths of DS PX is exactly that which you are referring to, it is possible to write an ETL job which does not predefine the number or contents of columns. I think that you haven't gotten an answer yet was due to the way the comment was phrased; I understood it as either a quest...
by ArndW
Wed Jun 29, 2005 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: order a job for each filename inside a directory
Replies: 8
Views: 2164

Would it be possible to rephrase your question?

A DataStage routine can loop through each file in a given directory, but I am not sure what you then intend to do with the files found.
by ArndW
Wed Jun 29, 2005 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex flat file stage vs. Sequential file stage
Replies: 0
Views: 1590

Ashwin, some very good points in your message. My gut feeling (inherited from performance number on Server) is that a sequential stage will be faster than a complex stage in this case where no complex file stage options are needed. The sequential file stage has to handle a lot less complexity and, a...
by ArndW
Wed Jun 29, 2005 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to connect to DS server
Replies: 14
Views: 3973

The problem is with the SQL privileges that you have (or don't have) to write to the UV_USERS table - most likely you will need admin rights to do this. What are you doing to trigger this error - I don't know where this might occur in normal use.
by ArndW
Wed Jun 29, 2005 4:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using routine read Hash file,generate 500 records of eachrow
Replies: 10
Views: 2760

Mandar, I think this forum is a great place to have people exchange information and, as in this case, get some assistance in coding. I feel quite strongly that this is not the place to "give" out code. The forum shouldn't replace training but supplement it. It should be obvious that the statement St...
by ArndW
Wed Jun 29, 2005 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logical Count
Replies: 10
Views: 2632

Kcshankar,

good news - at least now you have an explanation for the behaviour.

-Arnd
by ArndW
Wed Jun 29, 2005 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using routine read Hash file,generate 500 records of eachrow
Replies: 10
Views: 2760

anu, Yes, you can do it without a function call. It is ugly and unmaintainable and not necessarily faster. The base logic is as Ray and I demonstrated, but instead of a loop you would use the STR({repeatingString},500) to generate your 500 rows per row input. I think that with your experience, the s...
by ArndW
Wed Jun 29, 2005 12:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logical Count
Replies: 10
Views: 2632

kcshankar, I think that you have not really understood what both Ray and I have been trying to tell you. You need to perform 2 actions and checks: 1. Go to the DIRECTOR and look at the last log file for the last run of the job that only uses one node. Double click on the first entry which will tell ...
by ArndW
Wed Jun 29, 2005 12:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Total no.of jobs in a Project
Replies: 6
Views: 1719

In the BASIC Programmer's Guide pages 6-248 onwards it describes the mask formats - this one denote 1 alphabetic character and then any number of any characters. The reason you cannot just do a COUNT of the file is that it contains several records that do not hold descriptions of jobs but control in...