Search found 180 matches

by rafik2k
Tue Jun 19, 2007 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email notification
Replies: 12
Views: 4383

Thanks ArndW very much for sharing information, we will install client mail application on DS server and will test the same.
by rafik2k
Tue Jun 19, 2007 3:10 am
Forum: General
Topic: Can't open property of any Activity in Sequence
Replies: 6
Views: 3055

Thanks ArndW for quick reply. I had tried using searching criteria and found 7081 post, but unable to find suitable solution for my issue. If anyone of you have any reference of previous post on same, kindly let me know. Ray: Thanks, client machine has been rebooted many times. Yes I am using Window...
by rafik2k
Tue Jun 19, 2007 1:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email notification
Replies: 12
Views: 4383

Can I use some other email server as proxy server for our DS server ?
That means If I install client version of mail application(in my case Novell Groupwise) on DS Server, will I be able to send email notification?

or Should I need to install server version of mail application on DS server?
by rafik2k
Tue Jun 19, 2007 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email notification
Replies: 12
Views: 4383

Email notification

Hi, Our DS server does not access email server in the network, i.e no client email software is installed in Ds server. What is the minimum requirement for DS server to send email using Notification Acitivity? Please note groupwise mail is installed in some system in the network(don't know where it i...
by rafik2k
Tue Jun 19, 2007 12:32 am
Forum: General
Topic: Can't open property of any Activity in Sequence
Replies: 6
Views: 3055

Can't open property of any Activity in Sequence

Hi, I am facing one problem. While adding any activity and link to one another, I can't open property of the activity. For some activities(like startloop_activity,endloop_activity) with no link with it, I can open the properties. The momemnt I create a link on it, I can't open the property. For othe...
by rafik2k
Mon Jun 18, 2007 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get categoryname,jobname,job dependency.
Replies: 8
Views: 2941

How to get categoryname,jobname,job dependency.

My requirement is to get all jobs names and their corresponding job category name, and job depenency in formatted output from current datastage project. I have create one test job where using DSGetProjectInfo (DSJ.JOBLIST), but I got only job list in the current project. Any hints or help will be gr...
by rafik2k
Thu Jun 14, 2007 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartablity of sequence
Replies: 7
Views: 3565

1. In job properties of sequence check Add checkpoints so sequence is restartable on failure

2. Add a link of terminator activity at job B, select in properties of terminator activity as Abort without sending STOP request.

So in your case job C will still run even though job B fails
by rafik2k
Wed Jun 13, 2007 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim() with options L, T and B.
Replies: 20
Views: 8364

Hi, I tested following scenario and got result which is perferctly fine for me. Ans=Trim(Arg1,'x','B') Arg1 = xxxxxxxxxAAAAAAAxxxxxBBBBBBBBBBxxxxxxxx Result = AAAAAAAxxxxxBBBBBBBBBB ------------------------------------------- Ans=Trim(Arg1,'x','L') Arg1 = xxxxxxxxxAAAAAAAxxxxxBBBBBBBBBBxxxxxxxx Resu...
by rafik2k
Mon Jun 11, 2007 2:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job parameters
Replies: 6
Views: 3594

The parameter and default values are stored in DataStage Administrator's under project properties-->environment. What you are getting using $PROJDEF are all environment variable defined in DataStage Administrator. While running job using dsjob command, you can send local values instead of defult val...
by rafik2k
Mon Jun 11, 2007 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file question
Replies: 9
Views: 2729

chulett wrote:No, it will just be informational. Here, one from my logs:

Code: Select all

Project:XXX
Job name:YYYY
Event #:3187
Timestamp:5/27/2007 9:56:28 AM
Event type:Info
User:dsuser
Message:
Job.Link.HashedFileName: Read caching disabled, file size exceeds cache size
Thanks a lot Craig!
by rafik2k
Mon Jun 11, 2007 1:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add one year to a given date
Replies: 13
Views: 4099

for leap year u need to check year first for leap year like following:

Code: Select all

if (mod(year,4)=0 or mod(year,100)=0 or mod(year,400)=0) then
  // for leap year
  add 366 days
else
  // not leap year
 add 365 days
by rafik2k
Mon Jun 11, 2007 1:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About transaction size and array size
Replies: 2
Views: 1199

transaction size: is no. of rows written before each commit. u can give default value is 0 for if input size is less, that is, all the rows are written before being committed to the data table. If ur input size is too big, u can specify let's say 10,000. it all depends on ur requirement how u r goin...
by rafik2k
Fri Jun 08, 2007 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in creating a DB2 table
Replies: 3
Views: 2982

mouthou : Are you sure you were able to create the table ? But when I tried to run your query CREATE TABLE user2/DBAPVEN1(VENDOR_GROUP CHAR(4) NOT NULL, VENDOR CHAR(9) NOT NULL PRIMARY KEY) but i got following error SQL0104N An unexpected token "/" was found following "CREATE TABLE us...
by rafik2k
Fri Jun 08, 2007 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file question
Replies: 9
Views: 2729

Thanks everyone for valuable input!

Craig: Will it give error message or warning message if data can not fit in the memory, if I set Pre-load file to Memory-Enabled ?
by rafik2k
Fri Jun 08, 2007 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file question
Replies: 9
Views: 2729

The setting you mentioned will be used when you need the link private caching facility. More details are found in the Disk Caching Guide. Problem is , you rarely can predict the size of a hashed file that you will use. Ramesh: Can you please explain little bit more about link private caching facili...