Search found 4605 matches

by kduke
Sun Oct 10, 2004 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NOFILES and MAXUPROC Kernel Parameters in DS 7.5
Replies: 8
Views: 5525

What do you mean? Sun Solaris 2.8 is the OS. It is also UNIX. NOFILES is also a UNIX kernel parameter. You need to change MFILES to 200 or more which should be plenty. NOFILES is large enough. Do you have jobs with more than 100 links? There is another parameter for the number of DYNAMIC hash files....
by kduke
Sun Oct 10, 2004 10:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Huge number of processes for single job
Replies: 11
Views: 3453

I think you need to add a -wait to your dsjob so they do not run at the same time.
by kduke
Fri Oct 08, 2004 10:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NOFILES and MAXUPROC Kernel Parameters in DS 7.5
Replies: 8
Views: 5525

MFILES is the number of files which Universe can have open within one process. This has to live under the limit at the UNIX level. Some UNIX platforms do not have a limit. NOFILES is the UNIX kernel parameter which sets the limit at the UNIX level. If MFILES allows a process to exceed the UNIX level...
by kduke
Fri Oct 08, 2004 12:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NOFILES and MAXUPROC Kernel Parameters in DS 7.5
Replies: 8
Views: 5525

NOFILES has a direct relationship to MFILES in uvconfig. I think MFILES can be 2 less than NOFILES. Anyway DataStage performs best when you make MFILES as large as possible otherwise it will close a file before it opens another when it gets close the MFILES limit.
by kduke
Fri Oct 08, 2004 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Client Edition
Replies: 3
Views: 997

You have to pay extra for every server version you install. Your server should not slow down with a few developers on it. It is probably the jobs running that are slowing you down. You may need to test big slow jobs at night. We do that now. It works well. You want your developers to be productive.
by kduke
Fri Oct 08, 2004 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Printing to a plotter
Replies: 12
Views: 3914

The bitmaps are large files. Never seen one over 5mb before though. Converting them with SnagIt or IrfanView will dramtically reduce their size. You can convert to jpg and then back to bmp and they will be much smaller.
by kduke
Thu Oct 07, 2004 6:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 7529

Put it in a hash file. It would run lots faster than looping through a sequential file over and over.
by kduke
Thu Oct 07, 2004 6:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Printing to a plotter
Replies: 12
Views: 3914

You guys need to download DSaveAsBmp.bat. It can do a whole project in a few minutes and it is free. The bitmaps are nice enough. You have to click a few times because of a bug in Designer but it is still pretty fast.
by kduke
Thu Oct 07, 2004 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborted due to Oracle Error
Replies: 2
Views: 1329

When bulk loaders were first invented you could only bulk load into tables without constraints and indexes. As they got more complex they could bulk load into almost anything. Now you are trying to parallel bulk into a table with triggers and/or constraints. The database is complaining about the lev...
by kduke
Wed Oct 06, 2004 10:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Printing to a plotter
Replies: 12
Views: 3914

Vincent Actually it is free. The Designer has a command line option to save as bitmap. I turned this into a batch file which will save all jobs in a project as a bitmap. I also added it to the html documentation generated by an Ascential routine called JobReport. I also was added to my html document...
by kduke
Wed Oct 06, 2004 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how do I set up user permissions to protect projects
Replies: 5
Views: 2259

We wanted more restrictive access so we added the new project. We added a UNIX group named dstage2. cd $DSHOME vi dsenv # add umask 007 vi sample/ds.rc # change umask to 007 chmod -R 777 catdir sql DS_LICENSE cd ../Projects chmod -R 4770 . chmod 4770 . cd NewProject chgrp -R dstage2 . vi .developer....
by kduke
Tue Oct 05, 2004 10:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -run -mode VALIDATE -param ...
Replies: 9
Views: 2542

I think someone spent too much time changing diapers again.
by kduke
Tue Oct 05, 2004 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -run -mode VALIDATE -param ...
Replies: 9
Views: 2542

I think if you added one more feature it would explode. It is a very nice shell script. Very well written. This sounds like something quick and dirty. A one time process.
by kduke
Tue Oct 05, 2004 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -run -mode VALIDATE -param ...
Replies: 9
Views: 2542

Ken Bland posted a shell script to run jobs. It has examples of how to add parameters to the command line. It is probably way overkill for what you want but should get you pointed in right direction. What you need to add on the above is PARAMNAME='PARAMVALUE' like TargetDSN='Ora3'.
by kduke
Mon Oct 04, 2004 8:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to calculate the difference in seconds b/w 2 timestams?
Replies: 3
Views: 1184

Do a search this has been covered a lot. Ray posted several routines. If you cannot find it then let us know.