Search found 324 matches

by sachin1
Wed Sep 19, 2007 1:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warnings for Null Values
Replies: 3
Views: 1564

Re: Warnings for Null Values

my doubt is in database are these columns ,LEVEL1,LEVEL2,LEVEL3. null or not null, if it is not null then you can use "Treat Warning as error message checkbox", but then your job will not run.

if they are null we can find some solution for your implementation.
by sachin1
Mon Sep 17, 2007 11:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Timestamp Conversion in .CSV file as a Source
Replies: 5
Views: 1707

Re: String to Timestamp Conversion in .CSV file as a Source

i hope your date is in format yyyy-mm-dd, then in required target column give input as, hard coded values are just an example.I am using Oracle OCI stage and it works.

OCONV("2007-09-18","D-YMD[4,2,2]") : OCONV(00:00:00,"MTS")
by sachin1
Mon Sep 17, 2007 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning during sequence datastage job
Replies: 3
Views: 2438

Re: Warning during sequence datastage job

if you are using basic code then following will help

ErrCode = DSSetJobLimit(JobHandle, LimitType, LimitValue)
by sachin1
Mon Sep 17, 2007 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning during sequence datastage job
Replies: 3
Views: 2438

Re: Warning during sequence datastage job

go to Director ---> Job Run Options---> Limits --> in warning frame just increase the Abort after jobs(Warning values) from 50 to limit you want.
by sachin1
Mon Sep 17, 2007 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL file failure
Replies: 2
Views: 1494

Re: SQL file failure

hello you can just do the following


ExecDos sqlplus -s oracle/oracle@BIODS.WORLD @#directory#\in\file.sql > #directory#\in\file_log.log

all your error will be caught in file_log.log
by sachin1
Thu Sep 13, 2007 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert VARCHAR to DECIMAL
Replies: 2
Views: 1321

Re: How to convert VARCHAT to DECIMAL

it works fine with decimal and varchar column lookup.
by sachin1
Tue Sep 11, 2007 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unlinking error while run a Dos batch file from Datastage
Replies: 4
Views: 1910

Re: Unlinking error while run a Dos batch file from Datastag

to implement your functionality you can use ExecDos (Before job routine) and give input values for moving a file.

ExecDos move #directory#\file1.txt #directory#\file2.txt
by sachin1
Mon Sep 10, 2007 11:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with appending the seq file
Replies: 7
Views: 1539

Re: Problem with appending the seq file

Please have a look on the input tag of sequential file stage, and check for input name should be different, i think in your case input name is same.
by sachin1
Mon Sep 10, 2007 3:25 am
Forum: General
Topic: how to update table set a=c where a<c in DB2 stage
Replies: 1
Views: 1274

Re: how to update table set a=c where a<c in DB2 stage

please write custom sql ( i don't have db2 stage but that is what we do in OCI (ORACLE) stage.
by sachin1
Fri Sep 07, 2007 1:13 am
Forum: General
Topic: capturing Rejections from Oracle enterprise stage
Replies: 8
Views: 4485

Re: capturing Rejections from Oracle enterprise stage

in oracle OCI stage you have input tab in which you will find "Treat warning as fata error" and with this in tranformer you use rejected link. you will get all error codes for oracle.
by sachin1
Thu Sep 06, 2007 3:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 5
Views: 2029

Re: Stored Procedure

one hint is you have to use Stored_Procedure stage.
by sachin1
Thu Sep 06, 2007 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 5
Views: 2029

Re: Stored Procedure

please search for forum you will definitely get a solution
by sachin1
Tue Sep 04, 2007 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job status display
Replies: 3
Views: 975

Re: job status display

if you are inserting records in OCI stage then you can "Treat warning as Error" put this check box (checked) you can get some message that will help you.
by sachin1
Thu Aug 30, 2007 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Creating Table Lock
Replies: 4
Views: 1671

Re: Job Creating Table Lock

i have a similar case but it is for insert and update i have a values like Array Size : 1500 and Transaction Size: 50 which works fine for lakhs of records, you can try it out.
by sachin1
Thu Aug 30, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Value Concatenation
Replies: 5
Views: 1266

Re: Value Concatenation

if your input file is a hash file with C1 and C2 as key then i think you get unique records like C1 C2 A 1 A 5 A 10 B 2 B 1 C 51 Now follow below steps. your job design will be like H/C file(hash input file) ----> transformer---> hash(H/C) file(output) 1. Create 2 stage variables like APPEND_C2_VALU...