Search found 16 matches

by karteek
Fri Feb 03, 2017 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to load Russian characters
Replies: 1
Views: 2488

how to load Russian characters

Hi All, i am facing issue with Russian characters source file contains Russian characters when i am loading in teradata database it is populating with different characters. target field : COL1 VARCHAR(240) CHARACTER SET UNICODE NOT CASESPECIFIC, i tried below option : 1. in schema file i placed a. c...
by karteek
Thu Dec 01, 2016 3:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't read column from compressed dataset using orachadmin
Replies: 6
Views: 4807

Re: how to read compressed dataset using orachadmin command

Hi Andy, Sorry, it is a typo mistake. orchadmin dump -field ABC TGT_FILE.ds |sort|uniq Using compress stage we compressed the dataset. I am able to describe the schema using orchadmin describe -s TGT_FILE.ds but unable to view the data using orchadmin dump -field ABC TGT_FILE.ds Thanks, Karteek M
by karteek
Mon Nov 28, 2016 11:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't read column from compressed dataset using orachadmin
Replies: 6
Views: 4807

HI all,

any suggestion on below thread.
by karteek
Mon Nov 28, 2016 5:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't read column from compressed dataset using orachadmin
Replies: 6
Views: 4807

Can't read column from compressed dataset using orachadmin

Hi Everyone, I am unable to read compressed data using orachadmin command. orchadmin dump -feild ABC TGT_FILE.ds |sort|uniq error: ##E IIS-DSEE-TOPK-00007 06:33:07(004) <APT_PeekOperator> Error when checking operator: Input dataset does not have field: "ABC" i am able to see describe the f...
by karteek
Fri Apr 10, 2015 11:46 am
Forum: General
Topic: unix command to get list of job names for particular folder
Replies: 2
Views: 2715

Thanks craig.
by karteek
Fri Apr 10, 2015 11:10 am
Forum: General
Topic: unix command to get list of job names for particular folder
Replies: 2
Views: 2715

unix command to get list of job names for particular folder

Hi Everyone, how to get list of job names for only particular folder , using below i can get list of job names for entiire project but i need jobname for a particular folder dsjob -domain -server servername -user -password -ljobs projectname for example : Jobs/LB_TESt[folder] contains 10 parallel jo...
by karteek
Tue Feb 17, 2015 11:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with oracle db sequencer
Replies: 7
Views: 4215

Thanks craig , as per my understanding Surrogate Key Generator stage will Not generate Negative values , Hence i have to change oracle sequencer it will start with 1 increment by 1, before inserting i will multiply with -1 and also i cannot alter this sequencer. But if any application uses this sequ...
by karteek
Tue Feb 17, 2015 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with oracle db sequencer
Replies: 7
Views: 4215

Hi ,

Thanks for replay, i used datatype : BIGINT,Unsigned still same error.

does Surrogate Key Generator stage will generate Negative values.

i tried with other datatypes same error.

Thanks,
Karteek M
by karteek
Tue Feb 17, 2015 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with oracle db sequencer
Replies: 7
Views: 4215

problem with oracle db sequencer

Hi Everyone, How to generate Negative values in Datastage using oracle DB sequence. My sequencer: CREATE SEQUENCE FAKE_ID_SEQ_1 START WITH -1 INCREMENT BY -1 Error: APT_CombinedOperatorController,2: Sequence FAKE_ID_SEQ_1 returned invalid next value: -1. i can write insert statement and i can give t...
by karteek
Mon Jan 19, 2015 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date comparsion in transformer
Replies: 4
Views: 7213

Re: Date comparsion in transformer

if start_date and end_date datatypes are DATE then in transformer convert both date fileds to days then you can comapre both of them take 3 stage variables 1.SvStartDate: JulianDayFromDate(lk.start_date) 2.SvEndDate: JulianDayFromDate(lk.end_date) 3. CALC: if SvStartDate > SvEndDate then 'X' Else 'Y'
by karteek
Wed Jan 07, 2015 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with oracle datablocks migrating data into table
Replies: 2
Views: 2047

problem with oracle datablocks migrating data into table

Hi Everyone, i am migrating around 30 million records into oracle table,my datastage configuration is 4 node. i have two tables 1. Physical_item(parent table): Physical_item_id [primary_key] data: physical_item_id 1 2 3 4 5 2. PM_IMAGE_SECT(child table) which contains 30 million records. Image_sect_...
by karteek
Fri Oct 17, 2014 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture insert statements while migrating data into table
Replies: 6
Views: 3228

hi , my datastage load job : dataset[src] ---Xfm stage-----lk_ld--->oracle connector[destination] | lk_sqlfl_write | v sequential file stage in transformere stage for the link lk_sqlfl_write i will harcode : 'INSERT INTO EMPLOYEE ( E_ID,E_NAME) VALUES( ' : E_ID :',' : E_NAME :');' by using this i wi...
by karteek
Mon May 26, 2014 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate text file for each input record
Replies: 5
Views: 3720

hi dsetlteam, Thanks for your replay. i achived this by using below steps: 1) fetch emp table data into one sequential file. sequential file name : emp_20.txt emp_id e_name --------- --------- 123 A 245 B 786 C 2) use this sequential file to get record count. sq_file_stage(set row number column [row...
by karteek
Fri Dec 06, 2013 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: based on Date comparison fetch exact value
Replies: 3
Views: 1973

Hi chulett, I apologies on this, actually i tried with more logic. Unable to present my job design hence i didn't post what i am doing for this in DataStage: Reference table | | V step 1: src table -- lkp[key:ORIG_REF]====Multiple Row out put=====> transformer stage [TFM_MATCHED] | Reject | V transf...