Search found 15603 matches

by ArndW
Tue Feb 27, 2007 6:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending to a Sequential File
Replies: 5
Views: 1618

The WEOFSEQ writes an EOF (end-of-file) at the current location, truncating the file. And your WRITESEQ statement won't work the way you expect it either, as the file pointer is at the beginning of the file after you open it. You need to put a SEEK MyFile 0,2 after your open to position to the end o...
by ArndW
Tue Feb 27, 2007 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to funnel sequential files?
Replies: 2
Views: 717

Make the links from Transformers B C go to a funnel stage and then output straight to F
by ArndW
Tue Feb 27, 2007 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while compiling a job with transformer.
Replies: 5
Views: 1109

I don't think that the correct c++ compiler from Visual Studio is installed. the path to "cxx" is in the MKS toolkit directory, which can't be right.
by ArndW
Tue Feb 27, 2007 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Limit the entry in the log file
Replies: 8
Views: 1659

The only correct way is to get rid of the warning message. An alternate way is to demote or ignore the warning message. This can be done with 7.5 PX DataStage for PX jobs. See the directory tab Tools -> Message Handler Environment or look into the DataStage Manager Guide , 14-1 "Ma naging Message Ha...
by ArndW
Tue Feb 27, 2007 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Installation issue
Replies: 4
Views: 989

thanks for catching the Server reference!
by ArndW
Mon Feb 26, 2007 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error in job
Replies: 14
Views: 7106

The four most common causes of the write failure:

1. NULL or @FM in the key
2. insufficient OS level access rights
3. Standard file growing beyond 2Gb limit
4. Corrupt hashed file.

You have have ruled out #4
by ArndW
Mon Feb 26, 2007 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Installation issue
Replies: 4
Views: 989

No, it cannot be installed on that version. It will install on XP Pro, but is not supported.
by ArndW
Mon Feb 26, 2007 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC vs Plugins
Replies: 8
Views: 1647

I used "tend to" because I seem to recall the Informix ODBC driver was faster than the direct connection for server.
by ArndW
Mon Feb 26, 2007 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC vs Plugins
Replies: 8
Views: 1647

The difference is that the methods of connecting other than ODBC are usually direct ones supplied either by the manufacturer or a third party. ODBC is an open de-facto standard interface (free on windows, not always free elsewhere) to allow a common access to databases or database-like objects (i.e....
by ArndW
Mon Feb 26, 2007 4:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set up Users and Permissions
Replies: 12
Views: 4899

does "ping localhost" work? If you can't telnet to the local system, then the DataStage installation has most likely failed. You might be best served by reinstalling.
by ArndW
Mon Feb 26, 2007 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find EOF using DataStage
Replies: 9
Views: 5525

The normal method of reading a sequential file in a DataStage job does not let you append a row easily using that methodology.
This can be done with a simple command at DOS or UNIX, you can also open and append data to a sequential file from inside a DataStage routine (using OPENSEQ and SEEK)
by ArndW
Mon Feb 26, 2007 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Sequence name in the routine
Replies: 3
Views: 1260

From BASIC you can call DSGetJobInfo() and use the DSJ.JOBCONTROLLER InfoType.
by ArndW
Mon Feb 26, 2007 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom warning
Replies: 1
Views: 647

A DataStage PHANTOM is a background process, and if that process outputs to stdio then a message is put into the log. I haven't done too much QS so I don't know what the contents could actually signify, but it doesn't look like an error.
by ArndW
Sat Feb 24, 2007 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set up Users and Permissions
Replies: 12
Views: 4899

I've installed on XP pro with no visible problems, although it isn't supported. If you did a normal install and the telnet to localhost doesn't work then it is likely that your install was either not successful or you haven't started datastage.
by ArndW
Sat Feb 24, 2007 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set up Users and Permissions
Replies: 12
Views: 4899

Try entering the folowing from either "run" on the windows taskbar or from a DOS window: "telnet localhost" then you should be prompted to enter your new userid and password. If asked for a project, enter your project name (it is case sensitive). You will be at the TCL prompt, enter "QUIT" to exit t...