Search found 15603 matches
- Mon Oct 24, 2005 12:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error writing to pipe
- Replies: 14
- Views: 4984
OK, so then it goes away when you don't load to DB/2. What happens if you change the stage to upsert? Is your scratch filling up? Could you look at your log file and post the actual error message, plus look a couple of entries before and after for warnings or other text that might assist in narrowin...
- Mon Oct 24, 2005 12:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error writing to pipe
- Replies: 14
- Views: 4984
Camaj, change the job to write to a dataset or sequential file. Exactly what happens, i.e. the full error message. Does it happen at the same row number each time? Which stage is giving the error? All this can be done without going into the details of the orchestrate mechanism. Usually in a case lik...
- Mon Oct 24, 2005 12:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling ConvertMonth from within routine.
- Replies: 8
- Views: 1290
- Mon Oct 24, 2005 11:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Recovering from Machine Crash
- Replies: 2
- Views: 793
Hello E2, was the full backup taken while people were working with DataStage or while jobs were running? If so, your backup might be useless (worst case, unlikely scenario) or contain files that are going to show up as corrupted in DataStage. If the machine was truly idle when the backup snapshot wa...
- Mon Oct 24, 2005 10:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Restore
- Replies: 2
- Views: 1014
- Mon Oct 24, 2005 10:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling ConvertMonth from within routine.
- Replies: 8
- Views: 1290
Ken & gsherry1,
in this case the routine is not catalogued as a user-routine with a DSU prefix. I took a look and the appropriate DEFFUN for this is:
I haven't found that documented anywhere yet, though.
in this case the routine is not catalogued as a user-routine with a DSU prefix. I took a look and the appropriate DEFFUN for this is:
Code: Select all
DEFFUN ConvertMonth(a,b) CALLING 'DSX.CONVERT.MONTH'I haven't found that documented anywhere yet, though.
- Mon Oct 24, 2005 9:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error writing to pipe
- Replies: 14
- Views: 4984
I am curious why you suspect a DB/2 partition lock when you get the same error message writing to a dataset or sequential file? Does the error message refer to a stage or a player number - pipes are used extensively for interprocess communication so you would need to narrow it down. If you got an er...
- Mon Oct 24, 2005 8:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Cleansing
- Replies: 4
- Views: 1000
Gsherry1, The OCONV/ICONV functions all return a status code. When a date could be correct and a rule can be followed, the conversion is done and a warning STATUS is returned {which is of course ignored in derivations}; while an invalid date isn't converted and an error STATUS is set {once again, un...
- Mon Oct 24, 2005 8:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Basic to handle file
- Replies: 11
- Views: 2940
My thoughts are - why bother attempting to code a DataBase type solution for a flat file when you can have (a) UniVerse or (b) your ETL database do it for you? If you really need to have several process use (and modify) a sequential file then you should do you own file-level locking. Use a second (e...
- Mon Oct 24, 2005 12:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Holding Previous Key Data Value in Stage Variable
- Replies: 4
- Views: 5015
dhiren, so your rule is "sort the incoming data by rec_72_Nr and Move_Dt and use the previous Move_Dt unless it is a new Rec_72_Nr in which case use a fixed date" You will need to remember both the last Rec_72_Nr and Move_Dt in stage variables, but your approach listed in the original question will ...
- Mon Oct 24, 2005 12:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what is merge explain with simple example
- Replies: 2
- Views: 1017
Sekharg_dw, you now have 3 threads on DSXChange, the two others are/were: what is shared containers and how it used in regular job ! plz expalin with simple example please example routine with simple example {actually 2 threads, posted simultaneously in both Server and PX forums!} This forum is not ...
- Sun Oct 23, 2005 11:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: do we have duplicate remove stage in server edition
- Replies: 2
- Views: 815
- Sun Oct 23, 2005 3:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic hashed files and Static hashed files - pros and cons
- Replies: 7
- Views: 1469
I thought that the dynamic files didn't go through the normal rotating file pool because of the T30FILES parameter; obviously wrongly. So one does need to add the number of concurrent dynamic files that are open when doing sizing estimates for the MFILES. It is odd how, back in the earlier days of P...
- Sun Oct 23, 2005 3:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic hashed files and Static hashed files - pros and cons
- Replies: 7
- Views: 1469
Ray, a couple of comments and observations that might be coupled with questions on hashed files - I think that when the same dynamic hashed file is opened by several processes concurrently each gets it's own entry from the T30FILES pool, while static hashed files are shared from the MFILES rotating ...
- Sun Oct 23, 2005 3:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Holding Previous Key Data Value in Stage Variable
- Replies: 4
- Views: 5015
dhiren, stage variables are executed in the order in which they appear in the list. I think in your case you don't want to store the previous row's values, but the lowest date value (or the 1st date value after a group change) So you could change your transform to store the REC_72_NR column and see ...