Search found 8 matches

by sonal
Wed Jun 05, 2013 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to calculate running totals (cumulative) based on a col?
Replies: 25
Views: 12875

You could use the loop function in transformer, but you need to sort the data in datastage and partition it according to the key values.The order by caluse of database , need not result in ordered data within each partition
by sonal
Thu May 23, 2013 12:41 am
Forum: General
Topic: Getting strange error from Repository
Replies: 2
Views: 1520

Re: Getting strange error from Repository

You might need to rebuild the indexes on the XMETA repository.
by sonal
Tue Apr 30, 2013 4:07 am
Forum: General
Topic: Datastage roles failure
Replies: 1
Views: 1736

Re: Datastage roles failure

After defining the user role in the IIS console under Administartion>User and Groups tab , you will also have to do credential mapping
under the Adminstration >Domain Management>Engine Credentials tab

To map the Suite User to operating System User.
by sonal
Tue Oct 23, 2007 2:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to connect database from datastage
Replies: 4
Views: 3704

For accesing Database through OCI stage - u need to have Oracle 9i Clinet Installed on the DataStage server .And TNS names specified in the file for oracle client.-For more details you can refer to Oracle 9i Plug in installation guide.
by sonal
Tue Jul 17, 2007 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Run job from command line?
Replies: 3
Views: 1444

Re: How to Run job from command line?

you could find detailed information in server job development guide under the topic DataStage Development Toolkit.
Hope this is useful.
by sonal
Fri Mar 30, 2007 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running all jobs in a project from command line
Replies: 4
Views: 1953

Yes, jobs can be run form command line using the command

dsjobs -run option.

You could write a shell script that calls the run command and repalces the job name with a new one everytime it runs.
by sonal
Tue Mar 27, 2007 11:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IF THEN END IF
Replies: 3
Views: 1834

You can use If then statements as nested form

If (value1)
then
else
if (value 2)
then
else default

or as

if (value1) then
if (value 2) then

ther is no end keyword here
by sonal
Tue Mar 27, 2007 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use a $PATH UNIX directory in a server job
Replies: 5
Views: 1877

You can define the Project level parameter through Administrator
and use it as a path parameter.
Log on to administrator, select your project and then define the environmental variable under properties and the heading of User Defined.

Use it in your Jobs through the Job properties.