Search found 16 matches

by venkateshrupineni
Thu Aug 01, 2013 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: default value to -911
Replies: 7
Views: 3282

Do left outer join in look up stage

Hi, As per my understanding of your requirement.. your requirement expected job flow like below 1) DB2 ->Lkp(<--- SQL) reference in look up stage mentioned in the condition- look up failure value=continue and read MD_id as nullable yes 2)then in the transformer write below derivation for those corre...
by venkateshrupineni
Mon Mar 18, 2013 6:50 am
Forum: General
Topic: How to Read zip file ?
Replies: 9
Views: 4444

i think it might be useful
gunzip the file and spilt the file into multiple files and covert that job into multiple instances, parameterizing the source file name
and passing the source file parts at sequence level.
by venkateshrupineni
Mon Mar 18, 2013 6:06 am
Forum: General
Topic: Send email while rejecting Records
Replies: 16
Views: 5623

use the below procedure, jobactivity -> Execute condition -> UV Activity -> neted condition -> notification mail Execute condition:- cd reject file path;cat reject file|wc -l (if u r not passing metadat) UV activity > if nested condition.commnad o/p > 0 then 1 else 0 nested condition -> UV.activity ...
by venkateshrupineni
Mon Dec 31, 2012 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding Max and Min on varchar column
Replies: 9
Views: 8206

u can do using only sort stage and sort the data in desc select first record using transformer stage (read transformer stage in sequential mode) and write constraint is @inrownum=1 if you need only one record.
by venkateshrupineni
Fri Dec 28, 2012 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp
Replies: 11
Views: 5573

Add to previous suggestions their is one more function IsValidTimestamp() try this it will genrate flag value, using this flag value u can filter the records
by venkateshrupineni
Fri Dec 28, 2012 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job completes successfully , but is showing ABORTED
Replies: 5
Views: 2897

check that job(not able to view job log) log filter propertis has somebody may be changed for that job..check the job log options is there any auto purge or some one cleard the log.
by venkateshrupineni
Thu Oct 18, 2012 1:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Size
Replies: 6
Views: 3861

req:more ingformation about VOC

Hi Ray,

can you please explain about VOC entry.

Thanks in advance
by venkateshrupineni
Wed Oct 17, 2012 6:54 am
Forum: General
Topic: Update Job Control Table using File Name,File date
Replies: 3
Views: 2446

like audit history of job running

hello,

if you want to load the data into audit table. i can provide one server routine...
by venkateshrupineni
Wed Sep 26, 2012 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RDBMS Code:5356 in Datastage
Replies: 4
Views: 2937

if you have an issue when loading
try multi load using teradata connector stage
by venkateshrupineni
Wed Sep 26, 2012 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Insert SQL Statement
Replies: 17
Views: 11473

how can write dynamic sql statent

hello Caig,

please help me how to write dynamic sql statements

Adavance thanks
by venkateshrupineni
Fri Sep 14, 2012 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BULK Access Method to Read data uisng Teradata connector
Replies: 3
Views: 4012

follow the director and check which link is first check out the metadata...and i thought don't go deeply..
by venkateshrupineni
Tue Jul 24, 2012 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Truncation of data for varchar field while using ODBC stage.
Replies: 22
Views: 8393

i may thought it may be the issue with Length of column or NLS try to change the length and check it once...

other try to use cast function and increase your length of your truncate clumn at the source level and passed that changed value to further stages..try this ...
by venkateshrupineni
Fri Jul 20, 2012 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i am getting below warning in the column import stage
Replies: 1
Views: 1583

i am getting below warning in the column import stage

Column_Import_75,0: Field "RECORD_TYPE" delimiter not seen, at offset: 2 my src data is fixed width file whic is iam geeting from reject link from seq file stage. 02SEARSLEGACY SEARSLEGACY SEARSLEGACY 801 HOME 608 HOUSEHOLD GOODS 008 HOUSEWARES 1 KITCHEN ELECTRICS 97 SEARS.COM 7 METALWARE ...
by venkateshrupineni
Fri Jun 29, 2012 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation in the datastage server job.
Replies: 4
Views: 3592

follow the Transformer execution flow

if you have any indicator for Hdr and trailor records then follow the below steps 1) from header record get the value of count using subsring if it fixed widh or u can use field function to get the count no from the header 2)in constraint exclude the hdr and trailr records based on your indicators 3...