Search found 48 matches

by fareeda_b
Tue Jun 09, 2009 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing a charecter from the first position of the value
Replies: 3
Views: 2164

Hi Ravi,
have you tried convert function in transformer ?
try this one
Code:
Convert('"','',column name)
by fareeda_b
Wed May 27, 2009 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get jobs names from Datastage project.
Replies: 6
Views: 23402

Hi Siva,

dsjob -ljobs <Projectname>
then you will get your project jobs in list .
by fareeda_b
Wed May 27, 2009 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter the records in sequential stage?
Replies: 7
Views: 3019

Hi miwinter,

thanks for the reply,in sequential file we have option "Read first Rows" like this also we can filter the records right?
by fareeda_b
Wed May 27, 2009 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter the records in sequential stage?
Replies: 7
Views: 3019

Hi all,
thanks for reply

if i'm wrong please correct me
i have used "Filter" option in sequential file in that i have used unix command. is there any process is there ?
by fareeda_b
Wed May 27, 2009 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter the records in sequential stage?
Replies: 7
Views: 3019

filter the records in sequential stage?

Hi All,

Could you please help me how can filter the records in sequential stage?
by fareeda_b
Tue May 26, 2009 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Delete Dataset in Datastage Parallel Jobs?
Replies: 8
Views: 19170

Hi DWH-M,
thanks for the reply
i have tried to delete but not able to find delete option in Datastage Manager .(tools...>Dataset management..>)
Could you please help in this
by fareeda_b
Wed Apr 15, 2009 3:24 am
Forum: General
Topic: certification
Replies: 3
Views: 2397

Hi Sunitha,

This link has the objectives of the test

http://www-03.ibm.com/certify/tests/obj415.shtml

Hopefully It may help you.

Thanks
fareeda

*Note: Topic Relocated to General - Content Editor*
by fareeda_b
Wed Apr 15, 2009 3:23 am
Forum: General
Topic: certification
Replies: 3
Views: 2397

Hi Sunitha,

This link has the objectives of the test

http://www-03.ibm.com/certify/tests/obj415.shtml

Hopefully It may help you.

Thanks
fareeda
by fareeda_b
Tue Apr 07, 2009 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need help in undestanding CRC32
Replies: 4
Views: 2933

Hai ,


viewtopic.php?t=118781&highlight=CRC32

Hopefully it will help you .
by fareeda_b
Fri Mar 06, 2009 2:36 am
Forum: General
Topic: User variable activity stage
Replies: 2
Views: 3760

User variable activity stage

Hi All

i need to know about the user varible activity stage. Actually i need to invoke the one varible value which is there in other job.In a sequence i need to get this to compare the varble value.

So help me in this.
by fareeda_b
Thu Feb 05, 2009 11:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: API Stage
Replies: 3
Views: 2287

Hi Kumar, The DB2/UDB Enterprise (native parallel) stage should be used for reading from, performing lookups against, and writing to a DB2 Enterprise Server Edition database with Database Partitioning Feature - As a native, parallel component, the DB2/UDB Enterprise stage is designed for maximum per...
by fareeda_b
Fri Jan 30, 2009 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is the difference between lookup,merge,and join stage?
Replies: 3
Views: 2874

Hi arun,

The Lookup stage is most appropriate when reference data is small enough to fit into physical (shared) memory.
Limit use of Sparse Lookup(for DB2 and Oracle reference tables)

For reference datasets larger than available memory, use the JOIN or MERGE stage.

thanks
fareeda
by fareeda_b
Thu Jan 29, 2009 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special characters in column name
Replies: 11
Views: 7809

Hi braj,

Try this Field(column_name,"@",2)

Example :
column name:Z@CTCD

special character position is 2

Field(Z@CTCD,"@",2) it will work in transformer stage

Thanks
fareeda