Search found 4605 matches

by kduke
Fri Nov 11, 2005 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Repository in version control
Replies: 8
Views: 5535

You can split the new name from the old name with an EVAL.

Code: Select all

Select
   EVAL "FIELD(NAME, '^', 1)" AS OLD_JOB_NAME,
   EVAL "FIELD(NAME, '^', 2)" AS JOB_VERSION
From
   DS_JOBS
;
by kduke
Fri Nov 11, 2005 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Repository in version control
Replies: 8
Views: 5535

Do a search for TCL commands. Here is the TCL command:

select * from DS_JOBS ORDER BY NAME;
by kduke
Fri Nov 11, 2005 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding the jobs that use a field in a hash file
Replies: 4
Views: 997

Ray only developers down under are punctilious or are the only ones who would admit to it. :wink:
by kduke
Wed Nov 09, 2005 6:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where are the log files for DS
Replies: 12
Views: 3265

hi KDuke, I downloaded etlstat & imported into DS but now I cannot delete them.. ? This solution does not work for me, because we have very limited access to DB, therefore I'm still searching for solutions based on hash or files only (anything that's only limited to ds, w/o touching DB)' Thanks...
by kduke
Tue Nov 08, 2005 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating categories
Replies: 7
Views: 1680

You hacked the DSX instead of hacking the repository directly. Nice. 8)
by kduke
Tue Nov 08, 2005 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating categories
Replies: 7
Views: 1680

Can you use a period or a backslash?

Well, anyway the categories are stored in DS_JOBS. You would need to hack one to figure out what it needs.
by kduke
Mon Nov 07, 2005 9:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wanna Import 7.5 Job into 7.1 Version?
Replies: 4
Views: 2160

You might be able to copy the job control code from a 7.5 sequence job to a 7.1 batch job. I doubt if you can import the job.
by kduke
Mon Nov 07, 2005 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log Creation while Importing Jobs.
Replies: 5
Views: 1582

I think he is talking about RT_LOGnnn. I am not sure it gets created when a job compiles or not. Try it and let us know.
by kduke
Sat Nov 05, 2005 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where are the log files for DS
Replies: 12
Views: 3265

You guys are on another wave length.
:shock:
by kduke
Fri Nov 04, 2005 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Crashes when working with Sequencers
Replies: 10
Views: 2439

Call support at IBM and get the patch.
by kduke
Thu Nov 03, 2005 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Crashes when working with Sequencers
Replies: 10
Views: 2439

Is this Anil? If so then call Ron. He got it first from ASCL. There is a dll they sent which goes into the DataStage client folder.
by kduke
Wed Nov 02, 2005 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to validate or QA your data warehouse
Replies: 2
Views: 667

Once you have validated the columns this way and this will only validate a straight copy of a field then row counts are very valid on a on going basis. You may need to validate this way again if you change the ETL. These are all ideas to get you started if you are stuck or have never done this before.
by kduke
Wed Nov 02, 2005 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to validate or QA your data warehouse
Replies: 2
Views: 667

Some more tips. If you have the source keys and a dblink back to the source then you can validate a field by select the source keys in the target table and join them to the source table where target.column <> source.column. Very easy. Count these and then do outer joins to see if there are missing k...
by kduke
Wed Nov 02, 2005 10:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: permission setting
Replies: 10
Views: 2069

I would out all DataStage users in one group like dstage. I would change the projects so other groups cannot read or write to these directories.

chmod -R 770 ProjectDir

or

chmod -R o-rwx ProjectDir

Write files to /usr1/shared or somewhere outside of the project.