Search found 170 matches

by anupam
Fri Jul 10, 2009 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reseting and Running a Job from Routine
Replies: 3
Views: 3425

Reseting and Running a Job from Routine

Here is the piece of code $INCLUDE DSINCLUDE JOBCONTROL.H JobName=Trim(Arg1) JobHandle = DSAttachJob (JobName, DSJ.ERRWARN) Status = DSGetJobInfo (JobHandle, DSJ.JOBSTATUS) If Status= DSJS.RUNFAILED or Status= DSJS.CRASHED THEN ErrCode=DSRunJob(JobHandle , DSJ.RUNRESET ) ErrCode=DSWaitForJob(JobHand...
by anupam
Fri Feb 06, 2009 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OS/390 ODBC connection setup problems
Replies: 10
Views: 5723

What is QEWSD used for?

I wanted to know what is the significance of this value...
by anupam
Mon Dec 29, 2008 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure Date issue
Replies: 1
Views: 1858

Stored Procedure Date issue

Hi, My job is executing one stored procedure (using stored procedure stage). this SP takes date as an input and date_out as an output. The procedure is running fine but the issue is that the output date is not correct. For eg, Its giving 01-JAN-2000 as an output where as the output should be 01/01/1...
by anupam
Mon May 12, 2008 5:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to import ODBC table definitions
Replies: 3
Views: 2778

I am also facing same issues.

Would you mind sharing sample entry so that I can make the changes accordingly...

Entry in uvodbc.config

PHDEVH
DBMSTYPE = ODBC
network = TCP/IP
service = PHDEVH
host = IPAddress

We are getting BCI error

Regards
by anupam
Thu Feb 16, 2006 1:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - Code not visible to anybody
Replies: 9
Views: 5958

Hi Anupam,
Try this link to create
Secure Routine


This is not the valid link.

Can you pls check abnd provide me the right one.
by anupam
Thu Feb 16, 2006 12:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - Code not visible to anybody
Replies: 9
Views: 5958

Can i have some way where in, The code tab is disabled.
by anupam
Thu Feb 16, 2006 12:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sqlldr Password visible at Unix level
Replies: 9
Views: 6942

-s does not work with sqlldr, it works with sqlplus.

Definately i will share the code to anyone who wants but can not share in public. Who so ever wants the logic should send PM to me. I hope you guys understand, its security issues....
by anupam
Thu Feb 16, 2006 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - Code not visible to anybody
Replies: 9
Views: 5958

Actually, the code which i have written should not be visible to any developers and operation members.

Nothing related with Money Issues.

Have i told you that I am back in Reliance Mumbai.
by anupam
Wed Feb 15, 2006 11:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - Code not visible to anybody
Replies: 9
Views: 5958

Routine - Code not visible to anybody

Hi,

I have created a Routine, I want that the code should not be visible to anybody.

What is the method of doing this.
by anupam
Wed Feb 15, 2006 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sqlldr Password visible at Unix level
Replies: 9
Views: 6942

It was not solved fully. If somebody execute 'ps -ef | grep sqlldr' then the password was visible.....

Anyways, now i have solved it.

Thanks all of you all....
by anupam
Wed Feb 15, 2006 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sqlldr Password visible at Unix level
Replies: 9
Views: 6942

Sqlldr Password visible at Unix level

Hi, I am executing sqlldr and do not want my password to be displayed. I have defined an environment variable and passing it to 1 routine and call dsloginfo. My password is not getting displayed anywhere in DataStage. My problem is to hide the password from unix level also. When my Job is running, i...
by anupam
Sat Feb 11, 2006 2:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS Query
Replies: 9
Views: 6101

Thanks a lot everyone, I got it resoolved. In my query i Restricted the lenght of Job Name and Category each to 30 and then took the substrings out of the fetched record.

Thanks
by anupam
Fri Feb 10, 2006 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS Query
Replies: 9
Views: 6101

This is my code. I am still unable to extract the values of Job name and Category. $INCLUDE DSINCLUDE JOBCONTROL.H 0 Ans=0 JobName='J1AaabXfm' Command ='SELECT NAME, CATEGORY FROM DS_JOBS WHERE NAME=':SQUOTE(JobName):';' Call DSExecute('UV', Command, Output, SystemReturnCode) NoOfMessage = DCount(Ou...
by anupam
Fri Feb 10, 2006 5:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS Query
Replies: 9
Views: 6101

I am getting the JobName and Category name in Output when executing the UV command. I want to store these 2 in 2 different variables.

How to separte these 2 fields and equate them to variables ?
by anupam
Fri Feb 10, 2006 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS Query
Replies: 9
Views: 6101

DS_JOBS Query

Hi, I am executing one query from Routine. The Query is "SELECT NAME,CATEGORY FROM DS_JOBS WHERE CATEGORY LIKE ='AAB%'" The output is shown below : Result = Job name............ Category............ J1AaabXfm AAB\S1Lbw 1 records listed. I am unable to capture the Category name. I want to c...