Search found 39 matches

by deepak.hsbc
Tue Aug 04, 2009 11:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Routine
Replies: 7
Views: 3295

Thanks Craig,
but search did not really help.There are only basic routines which call the function but none of the post tells how to run it from uvsh.

Any example will be a great pathfinder !!
by deepak.hsbc
Tue Aug 04, 2009 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Routine
Replies: 7
Views: 3295

Basic Routine

:idea: Is there any possiblities so that I can embade datastage Basic functions like DSAttachJob,DSGetProjectInfo etc into a Unix script OR can I call this functions from Universe shell ?? I know ther are other ways of doing this from datastage CLI but I want to explore the combination of Unix shell...
by deepak.hsbc
Fri Jun 05, 2009 12:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchadmin issue
Replies: 10
Views: 3478

Well..I had the simillar issue but it worked when i ran following in series it worked,you can try this out !! $ cd `cat /.dshome` $ . ./dsenv $ export LIBPATH=$LIBPATH:$APT_ORCHHOME/lib $ export PATH=$PATH:$APT_ORCHHOME/bin $ export APT_CONFIG_FILE=/opt/tools/ds/Ascential/DataStage/Configurations/XX...
by deepak.hsbc
Fri May 29, 2009 4:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between DataStage7.5 and 8.2
Replies: 3
Views: 1472

Re: Difference between DataStage7.5 and 8.2

version 8
---------------
New SCD stage.
Parallel job range lookup
Browser based admin console.
User lever security settings.
The metadata server
Improved SQL Builder
Improved job startup times
Better GUI

These are the major addition to DSv8
by deepak.hsbc
Thu Apr 16, 2009 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: API stage issue
Replies: 0
Views: 544

API stage issue

I have newly created environment where everything works fine but I am facing a strange issue.In its simplest form I am trying to execute this query from Db2 API stage "SELECT '2008-10-11' as TICDATE FROM sysibm.sysdummy1" and when I click on view data from stage itself It shows me the same...
by deepak.hsbc
Wed Mar 25, 2009 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation error
Replies: 2
Views: 1003

But I can run tar command from home directory and it is set in the PATH variable -

PATH=/opt/tools/ds/Ascential/DataStage/PXEngine/etc:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/dstgadm/bin:/usr/bin/X11:/sbin:.:/home/cfdsi04/sqllib/bin:/home/cfdsi04/sqllib/adm:/home/cfdsi04/sqllib/misc
by deepak.hsbc
Wed Mar 25, 2009 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation error
Replies: 2
Views: 1003

installation error

I am trying to install datastage on AIX box.Installation last for atleast 10 min and then fails with the following error - ============================================================ Launching Parallel Extender install Wed 25 Mar 17:52:49 2009 =======================================================...
by deepak.hsbc
Fri Mar 20, 2009 5:45 am
Forum: General
Topic: how to pass the start timestamp of one job to another job
Replies: 5
Views: 2031

DSJobStartTimestamp

I had a simillar scenerio in datastage v7.5.2 and i did following - .Used a transformer macro DSJobStartTimestamp and write this value to a seq file having only column JobTS(timestamp 10). - Then used this file in another Job and pulled the value for further use. This approach may help you in DS v8 ...
by deepak.hsbc
Fri Mar 13, 2009 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can i move dataset using mv command
Replies: 2
Views: 1964

You can copy using orch commands !!

orchadmin copy | cp source-descriptor-file target-descriptor-file
by deepak.hsbc
Thu Mar 12, 2009 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to reduce one year from current date
Replies: 10
Views: 5075

your error is because you are using input field as DATE and the conversion function is integer.YearFromDate return INTEGER.Change the datatype to CHAR 10
by deepak.hsbc
Thu Mar 12, 2009 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to reduce one year from current date
Replies: 10
Views: 5075

This transformationw will give you the desired result -

((YearFromDate(link.Column)-1) :'-': link.Column[6,2] :'-': link.Column[9,2])

Where link.Column is your date field coming as an input,So If you have link.Column =2009-03-12 Then the result will be 2008-03-12
by deepak.hsbc
Wed Feb 25, 2009 1:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Access to administrator client
Replies: 2
Views: 4030

its already installed,i cant change the system,is there any other way ?
by deepak.hsbc
Wed Feb 25, 2009 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Access to administrator client
Replies: 2
Views: 4030

Access to administrator client

How can I stop developer to log into Admin client? Right now developer has rights to log into DS Administrator because development ID belongs to dstage group.

Any work-around for this ?
by deepak.hsbc
Tue Nov 18, 2008 9:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config File creation
Replies: 8
Views: 1937

thanks.....This is what i was looking for,now i can start working from this point...
by deepak.hsbc
Tue Nov 18, 2008 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config File creation
Replies: 8
Views: 1937

yeah i have taken the Dx437 classes but still I am not fully confident of doing that..making an normal config files seems easy and i did that but the job in cencern definetly need a highly tuned config file.. Below is the config file i made and using but it gives a run of 3 hour to that job.do u thi...