Search found 7201 matches
- Tue Sep 18, 2001 1:21 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Abnormal Termination Issue
- Replies: 3
- Views: 653
You need to determine if you have run out of virtual memory when youve gotten the abnormal terminations. The easiest way to see this is to watch top for the swap free value going down to near zero. If your job designs are using large hash files, with read or write caches, you use up memory. If the f...
- Mon Sep 17, 2001 7:55 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Abnormal Termination Issue
- Replies: 3
- Views: 653
Abnormal Termination Issue
This is a topic for an orphaned message.
- Mon Sep 17, 2001 7:55 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Abnormal Termination Issue
- Replies: 3
- Views: 653
Hello I too have unexplained job aborts lately off and on. Once I either reset or recompile the job it will run fine. There is never enough about the error either. I have even checked the &PH& log and nothing more there helps. I have been working with Datastage support and they believe the project t...
- Mon Sep 17, 2001 5:09 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Unknow logical operaters
- Replies: 2
- Views: 421
- Mon Sep 17, 2001 5:07 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Unknow logical operaters
- Replies: 2
- Views: 421
- Mon Sep 17, 2001 1:06 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: While condition in Loop statement
- Replies: 1
- Views: 499
You need to structure your logic differently. Setup your loop to process until the condition Done is TRUE. If you exhaust the number of lines in your file Done will be set to TRUE. If you encounter a condition in your loop where you wish to set Done to TRUE, this logic works the same. This is a very...
- Mon Sep 17, 2001 12:11 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: While condition in Loop statement
- Replies: 1
- Views: 499
While condition in Loop statement
Hi, Could I put more than one condition in the "While" in this loop statement? I want the program exit the loop (with a warn message) if Left(Ligne,1) = < in the ptfile. That is, if readseq begun at the A label, the program have to exit (stop seq reading) when he encounter the B label, and if it beg...
- Fri Sep 14, 2001 4:13 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: using the commandline-Interface dsjob within a UNIX environm
- Replies: 1
- Views: 1825
using the commandline-Interface dsjob within a UNIX environm
This is a topic for an orphaned message.
- Fri Sep 14, 2001 4:13 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: using the commandline-Interface dsjob within a UNIX environm
- Replies: 1
- Views: 1825
I would like a list of all the Ascential tools and/or executables that should not be used in a production environment. thanks, Doug -----Original Message----- From: Ray Wurlod [mailto:ray.wurlod@Informix.Com] Sent: Friday, September 14, 2001 1:43 AM To: datastage-users@oliver.com Subject: RE: using ...
- Fri Sep 14, 2001 10:43 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Date conversion
- Replies: 4
- Views: 9567
Thanks a lot! Both kinds of solution work fine! Alessio ----- Original Message ----- From: To: Sent: Friday, September 14, 2001 11:09 AM Subject: RE: Date conversion > Strictly, you dont need that last , the following should be enough > since only 2 separators need to be defined (or undefined in thi...
- Fri Sep 14, 2001 9:09 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Date conversion
- Replies: 4
- Views: 9567
Strictly, you dont need that last , the following should be enough since only 2 separators need to be defined (or undefined in this case!), between Y & M and between M & D:- Ans = Oconv(@DATE, "DYMD[4,2,2") > -----Original Message----- > From: chris.thornton@ascentialsoftware.com > [mailto:chris.tho...
- Fri Sep 14, 2001 8:20 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Date conversion
- Replies: 4
- Views: 9567
How about: Ans = Oconv(@DATE, "DYMD[4,2,2]") Regards - Chris Thornton -----Original Message----- From: Alessio Giordani [mailto:alessio.giordani@inwind.it] Sent: 14 September 2001 08:59 To: datastage-users@oliver.com Subject: Date conversion Hi all, I have to convert internal date (@DATE) in YYYYMMD...
- Fri Sep 14, 2001 8:08 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Date conversion
- Replies: 4
- Views: 9567
Ans = Oconv(@DATE, "DYMD[4,2,2]":@VM:"MCN") The expression editor may object to @VM as not a valid system variable. However, it is, and will compile successfully. If you dont like the red colour, edit the DSParams file on the server (in your project directory) to include @VM in the [System Variables...
- Fri Sep 14, 2001 7:59 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Date conversion
- Replies: 4
- Views: 9567
Date conversion
Hi all, I have to convert internal date (@DATE) in YYYYMMDD. I tried Oconv function in this way: Ans = Oconv(@DATE, "DYMD[4,2,2]") but the deault separation character (blank) betwen year month and day, produce the following result: YYYY MM DD My rough solution was to replace blanks with "" Ans = Ere...
- Fri Sep 14, 2001 6:42 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: using the commandline-Interface dsjob within a UNIX environm
- Replies: 0
- Views: 1308
My four main reasons to prefer job control routines over dsjob. 1. dsjob is a SAMPLE program. It is supplied as an example of how to use the DataStage C API. In places (places it seems Wolfgang doesnt use) its a bit flaky. For example (in 4.0) the -wait option fails to wait. This is not good if you ...