Search found 4605 matches

by kduke
Tue Jan 18, 2005 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupt Indexes
Replies: 10
Views: 5124

I and one other person have admin privs on the server (end a process via Task Manager) but we do have an local admin account that our Development team have access to to use Administrator to unlock processes. All of these can cause this. Why are you doing these things on a regular basis? These shoul...
by kduke
Tue Jan 18, 2005 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage Error.....
Replies: 10
Views: 1425

You cannot grant permission to a user. These users all need their default group to be the same group like dsdev. This group usually is the same as dsadm.

If you try to keep multiple groups then it will always be a manual process.
by kduke
Tue Jan 18, 2005 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupt Indexes
Replies: 10
Views: 5124

You would need to do something like run out of disk space or kill a process with a kill -9 pid or some other situation which DataStage cannot recover from.
by kduke
Mon Jan 17, 2005 10:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different Stages in DS
Replies: 5
Views: 1108

Pal

Sorry but I think Ken has the best solution. Ascential has to sell against these products. They have comparison sheets.
by kduke
Mon Jan 17, 2005 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Listing all hash files
Replies: 7
Views: 1993

You will either have to remove the carriage returns or run uv and run it it at the prompt. If you run it at the uv prompt then run:

Code: Select all

PTERM CASE NOINVERT


Then just paste it in.
by kduke
Mon Jan 17, 2005 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Listing all hash files
Replies: 7
Views: 1993

You need to change :1 into your category but here is the query. select EVAL DS_JOBOBJECTS."@RECORD<6>" AS FILE_NAME FMT '35L', DS_JOBS.NAME AS JOB_NAME FMT '35L', DS_JOBOBJECTS.NAME AS LINK_NAME FMT '35L' from DS_JOBOBJECTS, DS_JOBS where DS_JOBOBJECTS.OLETYPE in ('CHashedOutput','CHas...
by kduke
Mon Jan 17, 2005 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulk Loaders in DS
Replies: 6
Views: 1299

You can easily run these outside of DataStage by writing shell scripts. DataStage can generate the control files needed for any of these. If you think they are slower then update a flat file and then run a shell script to bulk load. Let us know the results. I would like to know which is slower and b...
by kduke
Mon Jan 17, 2005 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file migration
Replies: 2
Views: 677

It is easier to upgrade in place. DataStage can upgrade the project and the jobs. It will also leave your VOC alone so all your hash files will be there. It seems to be very safe way to upgrade. Otherwise you will need to upgrade to a clean account and then try to create the hash files and/or copy t...
by kduke
Mon Jan 17, 2005 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different Stages in DS
Replies: 5
Views: 1108

This forum is designed to help you use DataStage. Your questions are more towards comparing DataStage to other products. Ascential sales people do these types of comparisions. Some of the developers have used other products and can help you transition to DataStage if that is what you want. I think m...
by kduke
Sun Jan 16, 2005 9:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to find 3 dll files necessary to run DS job
Replies: 6
Views: 2073

The second is in the System32 directory. I could not find the first.
by kduke
Tue Jan 11, 2005 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding batch control routine
Replies: 3
Views: 1120

When you are in job control in the job properties then there is a drop down list of all the jobs. Select the job you want to run and press the add job button. It will add all the code needed. Instead of the default values then it will be the batch job's parameter name or any variable name. Here is a...
by kduke
Tue Jan 11, 2005 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding batch control routine
Replies: 3
Views: 1120

In a batch job a parameter has a varaible of the same name. So if I have a parameter named FilePath then you can read the value by using FilePath like any other variable.
by kduke
Tue Jan 11, 2005 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set up UV account
Replies: 5
Views: 1050

If that is true then you need to be in the project directory before running the uv command.
by kduke
Thu Jan 06, 2005 9:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reusability concepts
Replies: 9
Views: 3187

I consider methodologies and best practices as reusable. If you develop sequences the same way every time and with the same parameter names this helps speed up development and keep jobs consistent. Job templates can also standardize methods. Using standard jobs to gather ETL stats and process errors...
by kduke
Thu Jan 06, 2005 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can you see the difference between same DS objects?
Replies: 4
Views: 1389

I wrote some SQL to do it in doc_tool.mdb the Access database updated with Reporting Assistant. If you want that code then I could look it up. I think it has been posted in the past but if you cannot find it then I will post it again. It would take several queries to get all the differences. Most of...