Search found 43 matches

by Jasti
Mon Sep 27, 2010 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row generator schema file issue
Replies: 2
Views: 2334

Re: Row generator schema file issue

Hi Ravi, Schema file is used to pass the metadata to a job/ stage and not the data. The schema file should contain the metadata ex. field names, data types and length. The definition of a schema will be something like this record( Field1:String[10]{delim=none}; Field2:String[10]{delim=none}; )
by Jasti
Wed Aug 19, 2009 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setting CC in notification(mail) activity
Replies: 6
Views: 3636

Hi,
I have added CcAddress to the arguments of DSSendMailTester routine and changed the code accordingly..but DSSendMail(which will be called from DSSendMailTester) is not accepting it.
Please test it from your end.. I might be wrong some where.. :(
by Jasti
Wed Aug 19, 2009 1:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setting CC in notification(mail) activity
Replies: 6
Views: 3636

Hi Sajid,
You can use comma(",") after the first email-id and add another id to that in "To" itself. There is no CC option available.
by Jasti
Tue Aug 18, 2009 1:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Decription in Schema file
Replies: 6
Views: 3068

Re: Field Decription in Schema file

i had a look at the DS documentation but couldnt find any information. pls let me know of anyworkaround. Hi Rajesh, From the documentation You can include comments in schema definition files. A comment is started by a double slash //, and ended by a newline. The following examples show various diff...
by Jasti
Tue Jun 16, 2009 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: column nullability
Replies: 3
Views: 2104

Re: Warning: column nullability

CT ID is the Keycolumn for the Joiner J_29 and all stages i have specified CT ID as Non Nullable. Even it gives a type conversion warning as below. Join_29: When checking operator: On input data set 1: When binding input interface field "CT_ID" to field "CT_ID": Converting a nul...
by Jasti
Mon May 25, 2009 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL Load time (Timestamp ) variations
Replies: 2
Views: 1548

You can use DSJobStartTimestamp instead of CurrentTimestamp(), it's there in DS Macro.
by Jasti
Wed May 13, 2009 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Parameterize Invocation ID
Replies: 10
Views: 9450

Hi Rajendhar,
Add some parameter (say INVOCATION_ID) to the job parameters of the Job Sequence. Go to the required job activity stage and browse for Invocation Id, there you will be able to find all the job parameters. Select the required one (INVOCATION_ID).
by Jasti
Tue Apr 28, 2009 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare 2 strings in transformer
Replies: 11
Views: 12622

Re: Compare 2 strings in transformer

[quote="adi_2_chaos"]Hi, You may try the following derivation: If (DSLink2.ID1 eq DSLink2.ID2) Then DSLink2.ID1 Else DSLink2.ID1 : DSLink2.ID2. Hi adi_2_chaos, What is eq in If (DSLink2.ID1 eq DSLink2.ID2) Shalini, Use If (trim(col1)= trim(col2)) Then (col1) Else (col1:col2) directly as de...
by Jasti
Thu Apr 02, 2009 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generating seq nos
Replies: 10
Views: 6316

i can get uniq nos not a problem. but when multiple jobs run at the same time all will query the database and get the max(col)+1 value, which will be same and when they calculate unique values, all will have the same values and cannot insert if it is a primary key for the output table. You need to ...
by Jasti
Mon Mar 16, 2009 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning,ZERO records loaded into target Seq file
Replies: 1
Views: 1464

Replace the nulls in 'POLINEAMOUNT' field with some value (Do the null handling)..
by Jasti
Wed Dec 17, 2008 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing date fields
Replies: 2
Views: 1350

Re: Comparing date fields

swathi Singamareddygari wrote: i tried using NULLToValue function also for assigning '' to date field but its not assigning empty to date field.
Swathi S
Try to pass all 0(zero) s into the date field in the correct date format which is used in you job,if the date field contains a null..
by Jasti
Mon Dec 15, 2008 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: record dropping
Replies: 4
Views: 2162

At which stage the records are getting dropped?Any warings(or information) from the job log?
by Jasti
Wed Nov 26, 2008 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling CLOB datatype in datastage
Replies: 7
Views: 9106

Hi..
Try using the LongVarChar datatype in the datastage job..We are using LongVarChar[4000] to read some CLOB type data in our project..
by Jasti
Mon Nov 17, 2008 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Function in Datastage
Replies: 2
Views: 3472

Hi,
Search the forum with the key "add months"..
by Jasti
Mon Oct 06, 2008 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage (where to enter DB name)
Replies: 1
Views: 1405

Hi,
Add the property "RemoteServer" under Connection and pass database name into that..