Search found 222 matches

by dr.murthy
Fri Aug 03, 2012 5:43 am
Forum: General
Topic: DSGetparamInfo error
Replies: 3
Views: 1448

DSGetparamInfo error

Hi, i have an requirement to capture the list of param values in a job , i tried with the function Ans = DSGetparamInfo(seq_TMW_MID_INVENTORYHIST_ONHAND, "AUDIT_FILE_NAME",DSJ.PARAMDEFAULT) in a routine window but its not compiling its throwing an warning C ompiling: Source = 'DSU_BP/DSU.C...
by dr.murthy
Wed Aug 01, 2012 3:02 am
Forum: General
Topic: Export issue
Replies: 1
Views: 1773

Export issue

Hi, When i trying to export the datastage jobs through linux command prompt i got a below error. ./istool export -dom DSTAGEDEVSYS01 -u nd65 -p nd65gzork -ar test.dsx -ds 'DSTAGEDEVSYS01\MANHATTAN\Jobs\ARCHIVE_AND_PURGE_DATA\ODS_MID_DISTRO_01_ARCHIVE.qjb' ERROR: unable to connect to ISF server: DSTA...
by dr.murthy
Wed Aug 01, 2012 12:50 am
Forum: General
Topic: List of parameter values
Replies: 2
Views: 1437

List of parameter values

How to get the list of parameter values that used in a job.
dsjob -lparams command gives the only the parameter not giving the default values.

Any one have an idea how to get the parameter name and default value.
by dr.murthy
Tue Jul 31, 2012 1:13 am
Forum: General
Topic: List of stages in a job
Replies: 7
Views: 2320

Thanks ray,

I just wanted to generate a report which contain list of the job names and folder where the pivot stage was used.
can i get this info by using above ds command
by dr.murthy
Tue Jul 31, 2012 12:19 am
Forum: General
Topic: List of stages in a job
Replies: 7
Views: 2320

List of stages in a job

Hi All,

I have an small requirement to identify the list of the stages that used in a jobs across the project.

is there any way to achieve this ?? instead of doing the manual process, since i have a more than 5000 jobs.


Thanks in advance
by dr.murthy
Thu Jul 12, 2012 2:20 am
Forum: General
Topic: Usage analysis in Datastage
Replies: 4
Views: 3141

Thanks Arndw, my table names were not hardcorded .
can i find this information from metadata work bench
by dr.murthy
Thu Jul 12, 2012 12:03 am
Forum: General
Topic: Usage analysis in Datastage
Replies: 4
Views: 3141

Usage analysis in Datastage

Hi, I have an requirement like to identify the list of tables and sequential files that used in a datastage jobs across the project. for example TableA was used in a five jobs out of five this table was used as a source in two jobs , used as a target in one job , used as reference in two jobs. Is th...
by dr.murthy
Wed May 16, 2012 10:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip zeros
Replies: 13
Views: 7181

Yes , you are correct NULL fileds will be filtered with ISNULL function and blank strings are filtered with Len(trim(string)) = 0.
But your source is an flat file so you cannot see the null values in a flat file. to filter the null values in a flat file you should check Len(trim(string)) = 0.
by dr.murthy
Tue Mar 20, 2012 6:37 am
Forum: General
Topic: unix command execution issue
Replies: 10
Views: 4716

unix command execution issue

Hi, I have an unix command its executinf fine in unix editor but when i tried to execute same command in datastage through execute command activity its throwing below warning SH: -c: line 0: unexpected token 281 in conditional command SH: -c: line 0: expected `)' SH: -c: line 0: syntax error near `(...
by dr.murthy
Tue Mar 13, 2012 3:23 am
Forum: General
Topic: Email notification on NON Business hours
Replies: 4
Views: 1491

Thanks ray,

Is ther any way to check
if day is not in (sat,sun) and time between (08:00 20:00)
from current timestamp vaue in datastage.
by dr.murthy
Tue Mar 13, 2012 1:28 am
Forum: General
Topic: Email notification on NON Business hours
Replies: 4
Views: 1491

Email notification on NON Business hours

Hi,

I have an requirement like my jobs will execute on hourly basis incase of job getting abort email alert needs to be send , this alerts should be send during non business hours only.
could you please sugestme ho to restrice this in datastage...

Thanks in advance...
by dr.murthy
Thu Feb 23, 2012 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parse logic
Replies: 5
Views: 2556

Parse logic

Hi any one could help me to get out this scenario with out using tranformer stage ..

ource
------
A,A1 A2 A3,B
z,Z1 Z2 ,C
Y,Y1,D

o/p
---
A,A1,B
A,A2,B
A,A3,B
Z,Z1,C
Z,Z2,C
Y,Y1,D


Thanks
in advance
by dr.murthy
Tue Feb 21, 2012 5:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter data with length
Replies: 2
Views: 1149

Filter data with length

Hi

Can we filter the data based on length of a field using filter stage ???
by dr.murthy
Mon Feb 20, 2012 9:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fetch Data based on delimiter
Replies: 4
Views: 2211

Fetch Data based on delimiter

Hi, I need a some solution to achieve the below output. my source data like Hyderabad-HYD,scb New Delhi,NDA,Ghs O/p --- Hyderabad New Delhi Here i need to fetch only the before first delimiter characters, it should be ignored after the -/, characters. i have some solution to handle this 1)find the c...