Search found 103 matches

by dsusr
Mon Sep 15, 2008 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing zeros for decimal values
Replies: 7
Views: 4592

Re: Removing zeros for decimal values

Try DecimalToString function with "suppress_zero" parameter
by dsusr
Wed Sep 10, 2008 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid NULL Character in File.
Replies: 3
Views: 1249

Change the value of APT_STRING_PADCHAR variable to '' or Hex value 0x20.

you can do this either at project level or can add this parameter in the job and change its value for the specific job.
by dsusr
Tue Sep 09, 2008 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NUll handling
Replies: 2
Views: 1766

just check if you are using the same column elsewhere in transformer. In addition to this put the property NullFieldValue='' in the Reject(sequential File)...

Also if-then-else syntax is redundant as you can use the function NullToValue(Source,'A') directly.
by dsusr
Tue Sep 09, 2008 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to login
Replies: 9
Views: 4753

Provide some more information like

What is the error your offshore team is getting while trying to login on DataStage ?
by dsusr
Tue Sep 09, 2008 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read sequentially
Replies: 3
Views: 1244

Either run the job in sequential mode or insert a transformer after the sequential file to copy the msg_id with each if the messages and later you can partition all the data based on msg_id.
by dsusr
Tue Sep 09, 2008 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute Command
Replies: 7
Views: 2501

try using the below command:

touch /opt/Ascential/Data/AIS_MIG_MAINT/MIGRATION/TEST/1200_Completed.txt

but for this you should have the write permission on this directory
by dsusr
Tue Sep 09, 2008 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP Plug-in Information
Replies: 2
Views: 1819

SAP Plug-in Information

Hi All, We are just trying to use the SAP Plug-in in one of pur projects on DataStage Version 8.0 and just want to know following things:- 1) Do we have a plug-in to connect to SAP Version ECC 6.0 ? 2) Are there any separate adapters to writer to ISU and CRM ? 3) Also Are we breaching some SAP licen...
by dsusr
Fri Aug 15, 2008 10:15 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Temp space getting Full
Replies: 4
Views: 4272

Re: Temp space getting Full

Thanks Divyesh,

Got the problem resolved by following the steps given by you.
by dsusr
Wed Aug 13, 2008 7:57 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Temp space getting Full
Replies: 4
Views: 4272

Temp space getting Full

Hi All, Whenever I am running the profiling jobs using the Parallel Extender the temp space i.e. /tmp directory on the server is getting full which in effect causes the profiling job to abort. I have tried changing the TEMP parameter to a different directory but the Orchestrate files are still getti...
by dsusr
Thu Jun 19, 2008 4:28 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Job Aborts with Unique Constraint Message
Replies: 1
Views: 2793

Job Aborts with Unique Constraint Message

Hi, We are trying to do the profiling on the source files and are finding that jobs for few files are getting aborted. We tried to do the analysis for each column seperately for those files and found that only for some specific columns the jobs are getting aborted. The Profile Stage Error files just...
by dsusr
Fri May 23, 2008 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Installation on XP Professional
Replies: 5
Views: 2435

Re: DataStage Installation on XP Professional

Can you please tell us which version of DataStage you have tried to install. The reason why I am asking this is that I have tried installing DataStage 7.5.1 but it didn't work.

I later found out in one of the Readme files that only DataStage 7.5x2 can work on Windows XP Pro.
by dsusr
Fri May 23, 2008 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Limit
Replies: 9
Views: 5429

Re: Aggregator Limit

Are you doing some pre-sorting before aggregation ?

Definitely its an space/memory issue. Temporary fix can be to run the job as sequential or make aggregator stage as sequential.
by dsusr
Fri May 23, 2008 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_DUMP_SCORE?
Replies: 3
Views: 1700

It seems you are running th job on 2 node configuration and since you are having 3 input files to join so it is resulting in 6 entries.
by dsusr
Fri May 02, 2008 4:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column import
Replies: 4
Views: 1623

Column import will work fine in your case. Just define the schema as Fixed length file with no delimiter.

dsusr
by dsusr
Fri May 02, 2008 2:33 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Schema Definition for Fixed Width Files
Replies: 8
Views: 7448

The problem has been resolved, we can have the following option in the schema:-

TT=Stream

The above will work for all fixed length files which dont have any end of line delimiter.

TT=Fixed --- this option will work for the fixed length files with end of line delimeter.