Search found 243 matches

by gssr
Thu Nov 19, 2009 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Control Error
Replies: 15
Views: 4558

Job Control Error

I used the Job Control to call all the BATCh job in a sequence While compiling the main job ,It throws me Errors based on parameter, '$' unexpected, Was expecting: ')', ',' 0271 ErrCode = DSSetParam(hJob5, "$OracleUser", $OracleUser) Can anyone have an Idea regarding this? Thanks in Advanc...
by gssr
Mon Nov 16, 2009 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communications
Replies: 17
Views: 8319

It is job that extracts the records from Oracle Db and load it into a Dataset. I cant able to view the records in the dataset link. It throws the above mentioned ERROR!!

How can i overcome this problem :!: :?:
by gssr
Fri Nov 13, 2009 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communications
Replies: 17
Views: 8319

I Could not able to view the files in the job ,So i tried to copy the job and tried to view the records..!! :roll:
by gssr
Fri Nov 13, 2009 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communications
Replies: 17
Views: 8319

I have not changed anything... It is a Production job and it was running in a daily schedule..

Hence i copied it and tried to compile and run!!

But i could not able to run...
by gssr
Fri Nov 13, 2009 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error calling subroutine: DSD.Browse (Action=5);
Replies: 3
Views: 3197

I got this error for all the jobs in that project. There is another Error following the above mentioned error!!! Error calling subroutine: DSD.Browse (Action=5); check DataStage is set up correctly in project Retek_ETL_PRE Warning: Data that exceeds the maximum display length has been truncated. Act...
by gssr
Fri Nov 13, 2009 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communications
Replies: 17
Views: 8319

Error setting up internal communications

Hi all, i tried to copy an existing job and run.. But it throws an error and Warning ...and Aborts Error: Error setting up internal communications (fifo RT_SCTEMP/DS_Test.fifo) Warning : Attempting to Cleanup after ABORT raised in stage DS_Test. I could not able to locate where the problem is? Can a...
by gssr
Fri Nov 13, 2009 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error calling subroutine: DSD.Browse (Action=5);
Replies: 3
Views: 3197

Error calling subroutine: DSD.Browse (Action=5);

Hi all , When i try to view the records in a dataset using "View Data", I got an error as follows, Error calling subroutine: DSD.Browse (Action=5); check DataStage is set up correctly in project ETL_DEV I checked with other projects and i can able to view the records in the dataset. Can an...
by gssr
Fri Nov 13, 2009 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Function in Datastage
Replies: 4
Views: 2537

What datatype are you using to define it the DS :?:
by gssr
Tue Nov 10, 2009 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: O/p in mentioned Format
Replies: 12
Views: 2793

After getting output like this,
Col
A
10
A
20
A
30
B
40
B
50
.
.
.

You can use remove duplicate stage (Provided the records in the column 2 have no duplicates!!)
by gssr
Tue Nov 10, 2009 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: O/p in mentioned Format
Replies: 12
Views: 2793

You can use PIVOT Stage! :arrow:
by gssr
Tue Nov 10, 2009 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on file loading to table
Replies: 9
Views: 2879

Then try to map the Varchar Column to Decimal without using any function to the target file. For your records your varchar(9) should be mapped to Decimal(6,2)

I do had a situation like you, and used the above solution which worked fine! (In 7x) :roll: :!:
by gssr
Tue Nov 10, 2009 12:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on file loading to table
Replies: 9
Views: 2879

puliram wrote: Just let me know the format of stringtodecimal syntax, though its is clear in help, its not helping much.
Can you post the conversion syntax that you have used? :?:

Actually,In 7x, we dont need any conversion function,as this can be done in the implicit conversion.
by gssr
Mon Nov 09, 2009 11:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on file loading to table
Replies: 9
Views: 2879

Can you able to see the records in the sequential file ?. If not then check with the metadata you have mentioned and then we can go for the type conversion!!
by gssr
Mon Nov 09, 2009 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on file loading to table
Replies: 9
Views: 2879

As you read the column as Varchar, you can convert it using the Type conversion technique. Do you get the whole value as Varchar(Including the decimal value)?
by gssr
Fri Nov 06, 2009 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Want to trim the leadin zero in a varchar
Replies: 5
Views: 1681

The Problem is solved ....Actually there are some spaces and hence i tried the followingand it is fine now!!

Trim((TrimLeadingTrailing(Link1.Column)),'0',"L")

Thanks for your comments,