Search found 91 matches

by ssunda6
Thu Oct 26, 2006 11:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: file attachment in mail
Replies: 13
Views: 4378

hi deepak, Iam able to attach file in mail. Iam receiving that mail with file attached. But the problem is all records are being sequentially placed instead of writing 1 record on each row. And in b/w the records, there is one speical character(a square). appering in the text file.I tried with all d...
by ssunda6
Thu Oct 26, 2006 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: file attachment in mail
Replies: 13
Views: 4378

file attachment in mail

Hi , Iam able to send mails using DSSendMail routine. I have a requirement of attaching a file which contains rejected records and send mail to clients ID. The file is getting attached, but it is not in readable format. It is just showing some squares as data. I am writing the rejected records to a ...
by ssunda6
Thu Oct 26, 2006 3:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notofication Activity Issue
Replies: 2
Views: 2523

mail id

Hi, I also faced the same problem of not receiving mails even though the job runs successfully. You need not specify server name(since it is on unix).When I tried sending mials to my company ID, it dint work. But when I sent mail to my Client ID,it worked(meaning the mail was sent successfully). So,...
by ssunda6
Mon Oct 23, 2006 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upserting data into teradata table
Replies: 4
Views: 2356

Upserting data into teradata table

Hi,
Is there any logic to upsert data from data stage into teradata table with out using teradata multiload stage.If so, please help me.
by ssunda6
Wed Oct 11, 2006 11:39 am
Forum: General
Topic: calling a sequencer from teradata-multi load stage
Replies: 7
Views: 6875

Hi All, Creating sequences in teradata(using IDENTITY) was not possible, as Database structure changes was not allowed in our case. Hence we went with the following approach. Input file contains empnames. Into target table, unique numbers for empno should be inserted. we used a column generator to g...
by ssunda6
Wed Oct 11, 2006 11:37 am
Forum: General
Topic: calling a sequencer from teradata-multi load stage
Replies: 7
Views: 6875

Hi
by ssunda6
Wed Oct 04, 2006 9:45 pm
Forum: General
Topic: calling a sequencer from teradata-multi load stage
Replies: 7
Views: 6875

Hi Craig,

I checked teradata related information.

By creating a sequencer in teradata,I wanted to access it in teradata-multiload stage , by writing a custom query ( insert into temp values(sequencer.nextval) ) .

But now using different appraoch , I got a solution.

Thanks,
ssunda.
by ssunda6
Tue Oct 03, 2006 9:23 pm
Forum: General
Topic: calling a sequencer from teradata-multi load stage
Replies: 7
Views: 6875

Hi Ray, I tried creating a sequencer in teradata. It is not identifying the syntax "create sequence". So, may be it has some other syntax or I am not sure if we can create a sequencer in teradata. Iam not able to read the whole content posted by you, Ray.(Iam not a charter memeber). So , I...
by ssunda6
Tue Oct 03, 2006 5:42 am
Forum: General
Topic: calling a sequencer from teradata-multi load stage
Replies: 7
Views: 6875

calling a sequencer from teradata-multi load stage

Hi, In oracle, we can create a sequence(eg., myseq) and use it in any sql-query as insert into ttest values( myseq.nextval ,'abc'); Can we create a sequence similarly in teradata also? if so please let me know how. I want to use that sequencer in user-defined sql statement in teradata-multiload stag...
by ssunda6
Thu Sep 28, 2006 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Multiload Stage
Replies: 1
Views: 981

Teradata Multiload Stage

Hi, I want to use a teradata multiload stage in my job to store the data into the table.My reading the data from a sequential file.Can anyone tell me what are the different types of settings that are to be done while updating the table.(any option Insert, Update, Upsert) i have used the following th...
by ssunda6
Tue Sep 26, 2006 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to remove additional zeros in a record using transforme
Replies: 1
Views: 795

how to remove additional zeros in a record using transforme

Hi all, i want to remove additional zeros from records using a transformer. I have tried with Trim function but it is not working .Also, please give the format in which this has to be done. I have tried with Trim function Trim("columnname","0","L") but this is not worki...
by ssunda6
Tue Sep 26, 2006 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove additional zeros in a record using Transformer
Replies: 12
Views: 13686

How precisely have you specified your Trim() function? ... Hi, I have tried with Trim function Trim("columnname","0","L") but this is not working.The data type is Char in input and output.Let me know if there is any other format which i need to give.With the above func...
by ssunda6
Mon Sep 25, 2006 12:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove additional zeros in a record using Transformer
Replies: 12
Views: 13686

How to remove additional zeros in a record using Transformer

Hi all,
i want to remove additional zeros from records using a transformer. I have tried with Trim function but it is not working .Also, please give the format in which this has to be done.
by ssunda6
Sun Sep 24, 2006 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user-defined sql queries-teradata stage is destination
Replies: 6
Views: 1877

Thanks for the replies. I will check with the options and update you again.

regards,
ssunda.
by ssunda6
Thu Sep 21, 2006 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user-defined sql queries-teradata stage is destination
Replies: 6
Views: 1877

by default-it is auto-generated query

Hi KrazyKoolRohit, In the teradata stage, we have options insert,append etc. But by default, the query is auto-generated. If I want the following operation to be done, insert into emp_table(empno_dim,empname,email) values ( empnoseq.nextval ,empname,email). empnoseq is a sequencer, how can we menti...