Search found 4605 matches

by kduke
Tue Apr 19, 2005 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VOC
Replies: 11
Views: 3501

Universe is not written in BASIC but it does have a BASIC compiler. DataStage routines use the same syntax as Universe BASIC. You can run jobs from TCL. You can get a list of commands with LISTV or HELP at TCL. You can get help on BASIC with HELP BASIC. There is also HELP SQL for help on Universe SQL.
by kduke
Tue Apr 19, 2005 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notification Activity
Replies: 9
Views: 2735

It works.
by kduke
Tue Apr 19, 2005 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VOC
Replies: 11
Views: 3501

Do a search. This has been covered a lot. Basically the VOC is the system table for Universe. Universe was the basis for the DataStage engine. You talk to this database through the uvsh or dssh called the Universe shell or DataStage shell. If you telnet into a DataStage server on Windows the n you s...
by kduke
Tue Apr 19, 2005 8:36 am
Forum: Enhancement Wish List
Topic: Automatic handling activities that fail
Replies: 2
Views: 1651

I wish there was an exception handler for unhandled results. So a warning without a link will not just stop the sequence.

I wish, I wish, I wish.

If you say it three times does it come true?
by kduke
Mon Apr 18, 2005 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VersionControl Tables
Replies: 6
Views: 1063

I looked around and it appears APM.VERSION seems to be the file.

LIST DICT APM.VERSION

To show you all the fields available.
by kduke
Mon Apr 18, 2005 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: version control moved different job
Replies: 8
Views: 1278

Do a search. This has happened to others.
by kduke
Mon Apr 18, 2005 1:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Aborting
Replies: 7
Views: 2069

Run sysdef and show just the kernel parameters on the last few lines. It looks like MFILES may need to increase. The %user says what you are doing is not very effective. The 100% cpu says you are cpu bound and not IO bound but most DataStage processes are heavy IO. How long have these processes been...
by kduke
Mon Apr 18, 2005 12:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query on surrogate keys
Replies: 1
Views: 741

In the SDK included with DataStage there is a function called KeyMgtGetNextValue. It updates a hash file called SDKSequences. You need to put the current max surrogate key in this hash file. Most use a job that has a parameter for table and key name. select max(#KeyName#) from #TableName#; This is o...
by kduke
Mon Apr 18, 2005 11:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User Defined Variables
Replies: 4
Views: 1200

Common or Named Common only exist across a single connection to Universe or the Engine. Each job has its own connection. I would use hash files or sequential files. Create a hash file to store each section and the result. Maybe clear this file at the begining. If you have known keys to this like Sec...
by kduke
Sun Apr 17, 2005 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Resetting a job in sequence
Replies: 2
Views: 646

You may found a bug. Report it to ASCL.
by kduke
Sat Apr 16, 2005 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to call the shell script program through a routine
Replies: 6
Views: 2458

It looks like you just do a chmod command and never execute the command. Call DSExecute("UNIX", 'chmod +x' :"/apps/Ascential/Projects/TIP/ExecFTPScript.sh": Cmd,output,SystemReturnCode) Even in this I think you need a space between +x and the path. I think Tony's solution...
by kduke
Fri Apr 15, 2005 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: code migration problems
Replies: 3
Views: 959

They are on version 6. Wait to version 7 to switch to sequences. I agree with the DBA part.
by kduke
Fri Apr 15, 2005 1:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgaradation from 6.0.1 to 7.5 or 7.5A?
Replies: 9
Views: 3882

I think our Designer problem is a Windows 2000 issue. The memory leak is a server side problem. I think a lot of issues are going away except for these 2. If you use XP and have no issues with 7.5.1 or 2000 and you do then please post. The memory leak kicks in on about 2 million rows. We had this in...
by kduke
Fri Apr 15, 2005 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgaradation from 6.0.1 to 7.5 or 7.5A?
Replies: 9
Views: 3882

The Designer seems to be unstable. If you pull up more than one Designer or too many jobs then it will error out and disappear. It does not leave jobs locked though. That helps. Also we cannot copy parts of a sequence in the Designer either in the same job or to another sequence. The server seems to...
by kduke
Fri Apr 15, 2005 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-defined SQL
Replies: 1
Views: 819

It probably thinks you are trying to use a parameter name. The other issue is maybe ODBC cannot create these types of temp tables. Just a guess.