Search found 15603 matches

by ArndW
Fri Aug 08, 2008 7:55 am
Forum: General
Topic: how to read pipe "|" delimited sequential file
Replies: 2
Views: 842

Please post the exact error message that you are getting so that we know where to start looking for the cause of the problem.
by ArndW
Fri Aug 08, 2008 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sorting in sort stage Vs Transformer
Replies: 7
Views: 2565

The sort stage gives you more options and control.
by ArndW
Fri Aug 08, 2008 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need DS transformation function for this SQL command.
Replies: 3
Views: 851

DataStage server internal dates are Julian; so an

Code: Select all

ICONV(In.Date1,'D4YMD[4,2,2]')-ICONV(In.Date2,'D4YMD[4,2,2]'
should give you the numeric difference in days.
by ArndW
Fri Aug 08, 2008 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WebSphere MQ connectors
Replies: 8
Views: 2425

I use MQJExplorer a lot to explore and modify MQ contents. The UNIX command line utilities can also be used, I don't recall the exact commands but they can be found in the MQ /bin directory.
by ArndW
Fri Aug 08, 2008 3:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updation of record into table
Replies: 10
Views: 2384

You are probably doing an insert-then-update instead of update-then-insert.
by ArndW
Fri Aug 08, 2008 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WebSphere MQ connectors
Replies: 8
Views: 2425

Can you connect to the queue manager from the command line mqm utilities or from your workstation using MQJExplorer/mqmon? I would confirm from there first before worrying that the error is in DS.
by ArndW
Fri Aug 08, 2008 3:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Contents of phantom output file
Replies: 4
Views: 1249

Does this scheduled job fail every time? Perhaps it isn't network or time related, but that this schedule starts under a different userid with less authorizations?
by ArndW
Fri Aug 08, 2008 1:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to get complete value
Replies: 1
Views: 620

If you make the column definitions in your job longer, does the missing data show up?
by ArndW
Fri Aug 08, 2008 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Contents of phantom output file
Replies: 4
Views: 1249

Since "sockets" are network related I would look there first. Are the sources or targets on a network (NFS-Mount, remote databases, etc.)? What UNIX are you using - you can try to get the ReadSocket() call description to find out what error 16 means.
by ArndW
Fri Aug 08, 2008 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ connector not connecting
Replies: 4
Views: 1202

I haven't gotten that functionality to work with the MQ Connector; I think it requires not only local queues but a local server as well. I have found the freeware product "MQJexplorer" to work sufficiently well, and is preferable to the IBM mqmon.
by ArndW
Fri Aug 08, 2008 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: system variable
Replies: 7
Views: 5241

These are mnemonics for Text Mark (@TM), Field Mark (@FM) and Value Mark (@VM). The latter 2 are used commonly in Pick-type databases. DataStage Server and the other Pick-type databases store records as long strings, often called dynamic arrays, and the field mark (char(254)) is used to separate the...
by ArndW
Fri Aug 08, 2008 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Erroneous data goes undetected in a Flat File Stage
Replies: 7
Views: 2707

I think that interpreting "123AA" as an integer is incorrect as well. There are options, though. You can edit the attributes and specify a "In_format" (I can't check now, but "nnnnn" should do the trick). Another alternative is to read these in as CHAR and then using IsValid() or other functions in ...
by ArndW
Thu Aug 07, 2008 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process the row based on the datatype of the field
Replies: 4
Views: 948

Code: Select all

IsValid("Int32",In.StringColumn) 
will return true if it is a valid int32, otherwise it will return false.
by ArndW
Thu Aug 07, 2008 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB Stage connection problems
Replies: 0
Views: 534

DB2 UDB Stage connection problems

I am trying to connect from an AIX box to a DB2 instance on a remote AIX box. I can successfully connect from the command line using "db2 connect to WCCINST1 using ...". I've added and modified the $DSHOME/.odbc.ini entry for WCCINST1 and also changed the "uvodbc.config" file to add this entry. From...
by ArndW
Thu Aug 07, 2008 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration to parallel edition
Replies: 12
Views: 2972

Yes, the tool is the same; PX is a superset of what the Server edition can do.