Search found 15603 matches

by ArndW
Thu Feb 15, 2007 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetProjectInfo(DSJ.HOSTNAME) returns wrong/old servername
Replies: 7
Views: 2872

Peter - but that means you can save the project to a .dsx file, delete it, re-create it and reload your .dsx file and you'll get the correct server name. I'm not at a DataStage machine right now, but if you to to the TCL prompt and "LIST UV.ACCOUNT" you'll see the hostname in there as part of the re...
by ArndW
Thu Feb 15, 2007 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetProjectInfo(DSJ.HOSTNAME) returns wrong/old servername
Replies: 7
Views: 2872

The server name is in fact stored at the time the project is created, and that entry cannot be manually changed to reflect a new name.
by ArndW
Thu Feb 15, 2007 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: random errors SIGSEGV, SIGKILL, SIGBUS
Replies: 17
Views: 5314

Sounds like a system change is causing this. Do Server jobs run? If you reset an aborted job, do you get any additional information in the "from previous run" entry?
by ArndW
Wed Feb 14, 2007 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running job in MI
Replies: 9
Views: 2015

You can only write to a sequential file from one process at a time. You might change your job around so the multiple instances write to the hashed files simultaneously, and then one more job to run single-instance to write from the hashed files to the sequential one.
by ArndW
Wed Feb 14, 2007 1:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp Issue
Replies: 6
Views: 1541

Pradeep,

The ICONV/OCONV formats in DataStage are separate for Date and Time components, but it is quite easy to use the MT conversion to get the appropriate time format using "MTH". What is your input format?
by ArndW
Wed Feb 14, 2007 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Lookup Failure
Replies: 3
Views: 1083

How large is the file /the path name /lookuptable.20070214.o2ylidd? Close to 2Gb? What are your ulimit settings?
by ArndW
Wed Feb 14, 2007 11:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in transversing the file
Replies: 13
Views: 3295

Parvathi, that overall response is a premium one, since I felt it contained something somewhat more complex than just reading in a manual. As mentioned elsewhere, the premium membership makes that post and many more (and more informative) posts visible and accessible to you. But the important part w...
by ArndW
Wed Feb 14, 2007 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does anyone have DataStage (EE) benchmarking figures
Replies: 5
Views: 2750

Are the database and ETL machines on the same frame? If not, the network bandwidth might be the limiting factor in the load. DataStage will probably be able to "feed" the database faster then Oracle can "digest" it. So Oracle configuration might also limit the speed. Certainly partitioning will make...
by ArndW
Wed Feb 14, 2007 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in transversing the file
Replies: 13
Views: 3295

The DataStage read of sequential files is pretty efficient; and DSParams is small file (if the file had millions of records I might reconsider, but this is going to take milliseconds to process).
by ArndW
Wed Feb 14, 2007 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller problem: Unhandled failure (2)encountered calling
Replies: 3
Views: 2648

chulett wrote:Nah... it's the standard 'problem'...
I should have read the whole post.
by ArndW
Wed Feb 14, 2007 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete file thru FTP
Replies: 8
Views: 1300

Since the DataStage TELNET service listens on port 23 on Windows, you need to specify a different TELNET client port for this to work. Or you can modify the FTP stage login lines / responses. You would have to manually do a TELNET to get the exact texts / prompts, but in addition to the USERID and P...
by ArndW
Wed Feb 14, 2007 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to connect to host:Project: UV (Internal Error(39202)
Replies: 6
Views: 5147

If you are 100% certain that you are calling the original "uv" command in the $DSHOME/bin path when starting DataStage then you probably have a serious problem; since the SQL server connectivity isn't part of the startup procedure! Can you enter into TCL by calling up "uv" or "uvsh" and get the ">" ...
by ArndW
Wed Feb 14, 2007 7:24 am
Forum: General
Topic: I am not able to install Datastage EE 7.5 version software,
Replies: 5
Views: 1786

What is your default language when installing? And at which point of the install do you get the abort?
by ArndW
Wed Feb 14, 2007 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in transversing the file
Replies: 13
Views: 3295

I would use a variable to store the current section, or "state" while reading the file. Line = TRIM(Line) IF Line[1,1]='[' THEN Section = Line[2,LEN(Line)-2] Then you can put an IF-THEN construct in to check the lines if you are in the section "EnvVarValues"
by ArndW
Wed Feb 14, 2007 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is Orchestrate Schema in DataStage?
Replies: 5
Views: 5959

Sathish321, fortunately all of Appendix A in the Parallel Job Developer's Guide explains this in detail. If you have any questions remaining after looking at that chapter I'm sure that someone here can help.