Search found 15603 matches

by ArndW
Wed Feb 03, 2010 2:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove duplicates
Replies: 17
Views: 5671

The command from UNIX is "mkdbfile" and several threads here have information on that, including this one.
by ArndW
Wed Feb 03, 2010 2:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext() - timeout waiting for mutex
Replies: 3
Views: 3052

sd_ds - I went to search and typed in "ds_ipcgetnext" and got 38 different threads as a result. Most of those looked quite informative.
by ArndW
Tue Feb 02, 2010 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error loading data from DB2 Bulk loader stage
Replies: 5
Views: 2439

You have a sporadic error and the text is "Unable to allocate communication resources". Is DB2 on the same machine as DataStage? Is the database or network extremely busy or loaded?
by ArndW
Tue Feb 02, 2010 9:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shell script to ftp csv files from cognos to DS server
Replies: 3
Views: 1496

Different flavours of UNIX require slightly different coding. I would suggest you go to Google and search for "shell script ftp {your unix}" to get samples on how to do this.
by ArndW
Tue Feb 02, 2010 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Default value
Replies: 1
Views: 776

Since the default is used when a value that doesn't conform to the datatype arrives (i.e. a space in an integer) it works for a sequential file, but since Oracle data is strongly typed the default can be defined but will never be used.
by ArndW
Mon Feb 01, 2010 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issues due to datastage upgrade
Replies: 8
Views: 3606

How did you determine that the connections are open? Have you identified the UNIX pids associated with your running job(s)? Once you do that, you can use the "truss" command to see what they are actually doing. Are they using CPU or IO time?
by ArndW
Mon Feb 01, 2010 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: executing Mainframe shadow program from datastage
Replies: 5
Views: 1462

There are several ways for doing this. Each site has different procedures and access rights - you would need to talk to your host administration team to find out which path they allow for remote job submission or scheduling.
by ArndW
Mon Feb 01, 2010 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: U_TRUNCATED_CHAR_FOUND encountered
Replies: 9
Views: 6430

Does your oracle load have many columns? It would be best to narrow the problem down to a single column and then to the row causing the error.
by ArndW
Mon Feb 01, 2010 4:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issues due to datastage upgrade
Replies: 8
Views: 3606

You will need to supply some more information in order for anyone to make an analysis. Are the jobs really running or do they just display as running in the director? What sources and targets do these jobs use and can you see if sessions to the appropriate database are actually still open? These two...
by ArndW
Sun Jan 31, 2010 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UV command support
Replies: 6
Views: 1894

This happened months ago. The DataStage engine was split from UV years ago and is still owned by IBM, so nothing will change as far as the uvsh command is concerned.
by ArndW
Sun Jan 31, 2010 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Transform
Replies: 1
Views: 876

DataStage server is not strongly typed; actually it is not really typed at all as the underlying engine really only knows about numeric and string data. Thus your job's behaviour is as expected.
by ArndW
Sat Jan 30, 2010 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: max length between two value marks in a multi value column
Replies: 9
Views: 1995

Change your query to

Code: Select all

SELECT EVAL "'*':FIELD(MSG.TEXT,CHAR(253),1)" AS EVENT FMT '100L' FROM RT_LOGxxx 
Then convert the '*' character back into a <Lf> after removing all linefeeds; use some other character if the '*' appears in your text.
by ArndW
Sat Jan 30, 2010 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: max length between two value marks in a multi value column
Replies: 9
Views: 1995

Your SELECT output is comin into your script on stdin, right? So just filter it with "tr -d '\n' " and you've achieved your goal.
by ArndW
Sat Jan 30, 2010 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: max length between two value marks in a multi value column
Replies: 9
Views: 1995

Your are using "FMT '100L'" in your command, so if you have more than 100 characters the SELECT inserts a line break. It is easiest to filter those out yourself from UNIX or elsewhere.
by ArndW
Sat Jan 30, 2010 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch space help needed
Replies: 12
Views: 5372

What does a before-job call of " " df //UnixServer/fld1/fld2/Scratch/"
" return?