Search found 89 matches

by kcshankar
Thu Feb 09, 2006 12:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Audit DS jobs
Replies: 6
Views: 3013

Hi Minish,
For Audit purpose I need to know the jobs changed for todays date.

I'm running the command
use CLASS ='2' to get only the status of the jobs.

Code: Select all

SELECT * FROM DS_AUDIT WHERE DTM > '2006-02-01 00:00:00' AND CLASS = '2'

regards
kcs
by kcshankar
Wed Feb 08, 2006 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Number To String
Replies: 4
Views: 2389

Hi somu_june, When the target columns metadata does not match with the source's(In your case source "int32" to target "string[max=18]")and no explicit conversion has been made you will get this warning message. DS does the number to string conversion and warns. Try by changing yo...
by kcshankar
Tue Feb 07, 2006 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the date of job creation
Replies: 18
Views: 4856

Hi Ravi,

Try this command to find Job Modification Date(s)
SELECT MODIFIER,DTM FROM UNNEST DS_AUDIT ON MODS WHERE CLASS ='2' AND INSTANCE = 'JobName';
Output:
Modifier-------modification Date
user-----------------Date



Regards
kcs
by kcshankar
Tue Feb 07, 2006 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the date of job creation
Replies: 18
Views: 4856

Hi Ravi,
Try this command,

Code: Select all

SELECT INSTANCE,CREATOR,DTC FROM DS_AUDIT WHERE CLASS ='2' AND INSTANCE = 'gmt1';
Output:
Instance Id.jobname
Created by...user
Created on...job cration date


regards
kcs
by kcshankar
Fri Feb 03, 2006 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the result of commands executed through Admin.
Replies: 3
Views: 1376

Hi loveojha2,
to know more, go thru the discussion between kumar and Ray in the following link...............
http://dsxchange.com/viewtopic.php?t=97 ... c4135269d9


regards
kcs
by kcshankar
Fri Feb 03, 2006 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About @DATE
Replies: 9
Views: 8555

Hi Puli.reddy, I am curious to get by using @DATE I was using the following expression to get Oconv(@DATE,"DYM[4,2]") but it gives a blank value between year and month. try this to extract year and month values in the format "YYYYMM" from @DATE function Oconv(@DATE, "D YM&qu...
by kcshankar
Wed Feb 01, 2006 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE SEQUENCER
Replies: 5
Views: 4020

Hi Jayant,
Using checkpoint option you can make the sequence to restart on failure.

regards
kcs
by kcshankar
Mon Jan 30, 2006 11:43 pm
Forum: Site/Forum
Topic: Monthly top 10 poster list
Replies: 9
Views: 5134

Hi kumar,

I mean ranking for all or atleast top 50,Which can be shown in their personal profile.


regards
kcs
by kcshankar
Mon Jan 30, 2006 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting String to Date
Replies: 1
Views: 1045

Hi Murali,

Search the forum for "String value to Date type unsuccessful ",You will get lot of posts related to your topic.

regards
kcs
by kcshankar
Sun Jan 29, 2006 11:11 pm
Forum: Site/Forum
Topic: Monthly top 10 poster list
Replies: 9
Views: 5134

Hi,
How about Ranking based on number of posts for all the participants.
1.ray.wurlod
2.chulett
3.ArndW
..
..
..

Regards
kcs
by kcshankar
Thu Jan 26, 2006 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 9277

Hi Ray,ArndW,Kumar,Craig Thanks for giving valuable suggestions. I altered the routine and it is working fine now. *------------Routine to find active stages----------------* $IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOBCONTROL.H $ENDIF ActiveStages = DSGetJobInfo(DSJ.ME, DSJ.STAGELIST) ValidOpen = @F...
by kcshankar
Wed Jan 25, 2006 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 9277

Hi Ray, For any job, no of Active stages in a job = Total no of process -1(Controller) correct me if Iam wrong. Only sometimes. If your design has two active stages directly linked (for instance two Transformer stages) they will be executed in one process. However, if you have inter-process row buff...
by kcshankar
Tue Jan 24, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage
Replies: 2
Views: 1639

Hi venkat, There are two kinds of routine that you can write in DataStage,one is a Transform function, the other is a before/after subroutine. Both Transforms and Routines are re-usable components, which are stored in the DataStage Repository. Transform function routines are called for every row pro...
by kcshankar
Tue Jan 24, 2006 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to print in next line
Replies: 8
Views: 3919

Hi sudhakar,
Here is an alternative.
Ereplace(in.Source," ",Char(10))


regards
kcs
by kcshankar
Mon Jan 23, 2006 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 9277

Hi Kumar,Ray
Thanks for your replies

I execute this command in DS Administrator.
I didn't copy the result,i typed it.


Regards
kcs