Search found 42 matches

by clmhwyfe
Fri May 22, 2015 4:20 pm
Forum: General
Topic: Sequencer was entered, but never exited
Replies: 4
Views: 3757

Thanks Ray, The trigger from SQ2 is a custom trigger as below (Finished OK or Finished with Warnings). CodeRefresh.$JobStatus = 1 or CodeRefresh.$JobStatus = 2 The email was not triggered which is correct as this trigger was not satisfied , But the job shows finished even though this trigger conditi...
by clmhwyfe
Fri May 22, 2015 12:51 pm
Forum: General
Topic: Sequencer was entered, but never exited
Replies: 4
Views: 3757

Sequencer was entered, but never exited

Hi all, I have sequence job where am using an "all" sequencer condition to check the status of 2 sequencers and send out a notification that the job completed. SQ1 completes successfully and SQ2 is aborted. I have a info on the director that says and I assume its because the trigger from t...
by clmhwyfe
Tue May 19, 2015 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: bInvalidDateTime has value 1 - Empty Values
Replies: 1
Views: 1653

Hi all,

I used the IsValidDate() instead of IsNotNull() and that resolved the issue.

Thanks All.
by clmhwyfe
Tue May 19, 2015 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: bInvalidDateTime has value 1 - Empty Values
Replies: 1
Views: 1653

bInvalidDateTime has value 1 - Empty Values

Hi All, Am using a derivation as show below for a TIMESTAMP field and getting the error bInvalidDateTime has value 1 because the Field164 is empty in some instance and the job is trying to insert a ' ' to the TIMESTAMP and aborts If IsNotNull(LNK_READ.Field164) Then StringtoTimeStamp((Trim(LNK_READ....
by clmhwyfe
Mon May 18, 2015 4:22 pm
Forum: General
Topic: Abort job if the Before/After Subroutine fails
Replies: 6
Views: 4976

Thanks all,

I changed the return code to a 1 and It resolved the issue.
by clmhwyfe
Mon May 18, 2015 2:32 pm
Forum: General
Topic: Abort job if the Before/After Subroutine fails
Replies: 6
Views: 4976

Abort job if the Before/After Subroutine fails

Hi All, Am using a before and after routine to execute a PL/SQL block that updates the job log information to a oracle table. Is there a way to abort the job incase the before or after sub routine fails , as my job runs even when the before routine fails. Am using the ExecSH routine to call the PL/S...
by clmhwyfe
Tue May 05, 2015 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical Pivot based on conditions
Replies: 2
Views: 1122

Thanks Ray,

I will try to filter it before the Pivot stage and update that column via another process.
by clmhwyfe
Tue May 05, 2015 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical Pivot based on conditions
Replies: 2
Views: 1122

Vertical Pivot based on conditions

Hi all, Am using a vertical pivot , but a new requirement is not working and am not sure on the change. Initially Data was available as shown below and I was able to do the veritcal pivot as Value_1, Value_2, Value_3 ID SEQ_ID VALUE 1 | 1 | A 1 | 2 | B 1 | 3 | C 2 | 1 | X 2 | 2 | Y but now they have...
by clmhwyfe
Mon May 04, 2015 5:35 pm
Forum: General
Topic: Email notification - Issue - Unable to use '\\' in the body
Replies: 2
Views: 1565

Thanks Mike , This resolved the issue (\\\\)
by clmhwyfe
Mon May 04, 2015 2:17 pm
Forum: General
Topic: Email notification - Issue - Unable to use '\\' in the body
Replies: 2
Views: 1565

Email notification - Issue - Unable to use '\\' in the body

Hi All, I have a job that needs to send out a notification with the location of the file in the Email body. The job runs fine and sends the notification but if specifies only a single '\' rather than '\\' as mentioned in the body. I tried to have the same in double quotes but still it sends out only...
by clmhwyfe
Mon May 04, 2015 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSTAGE-SYBOC-0023`:`Sybase Open Client error: ct_fetch()
Replies: 1
Views: 2554

DSTAGE-SYBOC-0023`:`Sybase Open Client error: ct_fetch()

Hi all, Am trying to extract data from a Sybase DB and getting the below mentioned error DSTAGE-SYBOC-0023`:`Sybase Open Client error: ct_fetch(): user api layer: internal common library error: The bind of result set item 23 resulted in truncation. DSTAGE-SYBOC-0023`:`Sybase Open Client error: ct_fe...
by clmhwyfe
Tue Apr 28, 2015 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to insert ' ' for a NULLABLE field in Oracle table
Replies: 9
Views: 3077

Hi Craig,

I tried using conventional load with the option set to 'No' and it either aborted (NULL Constraint) or sent these records to the reject file when I rejected the SQL constraint violation records .

But when I changed it to 'Yes' it loaded the data.
by clmhwyfe
Tue Apr 28, 2015 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to insert ' ' for a NULLABLE field in Oracle table
Replies: 9
Views: 3077

Hi Criag -
Just to update , I just ran the job via conventional insert and it worked fine.

So it works for both bulk and conventional insert.
by clmhwyfe
Tue Apr 28, 2015 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to insert ' ' for a NULLABLE field in Oracle table
Replies: 9
Views: 3077

Thanks Kashyap,

That resolved the issue.