Search found 68 matches

by cfuller
Wed Jun 11, 2008 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault Type 11
Replies: 16
Views: 7696

Hi Arnd No custom routines, just a very basic job to read data from a number of Oracle tables, using generated SQL, and writing to the hash file. Three columns read, 3 columns written to file with the same Metadata on both sides. The only difference I can see is that the column names are altered on ...
by cfuller
Tue Jun 10, 2008 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault Type 11
Replies: 16
Views: 7696

Fault Type 11

Hi all I'm in the process of upgrading from v7.1.r1 to v8.0.1a, and am having trouble with a couple of jobs. The jobs are very simple but I keep getting the same issue - DataStage Job 586 Phantom 12518 Abnormal termination of DataStage. Fault type is 11. Layer type is BASIC run machine. Fault occurr...
by cfuller
Tue May 27, 2008 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Routines compile
Replies: 8
Views: 2993

In your installation directory there is a command line utility called 'dscc' that will allow you to compile your routines. When releasing code to new projects I invoke the following to ensure everything is compiled - dscc /h <host> /u <user> /p <password> <Project> /j * /r * /f /rd <logfile> /rt T /...
by cfuller
Thu Aug 24, 2006 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom - Internal file corruption
Replies: 3
Views: 1164

Hi Kenneth

Just checked with the Unix Admin who told me that the SAN swapped a disk out at about that same time. Looks like all is now OK.

Thanks for the prompt response.
:D
by cfuller
Thu Aug 24, 2006 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom - Internal file corruption
Replies: 3
Views: 1164

Phantom - Internal file corruption

Hi During the production run last night one of the jobs finished with the following warning - DataStage Job 61 Phantom 23353 Program "DSD.StageRun": Line 571, Read operation failure. Program "DSD.StageRun": Line 571, Internal file corruption detected. File must be repaired. DataS...
by cfuller
Mon Oct 31, 2005 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promotion not happening
Replies: 5
Views: 2074

BTW, have also logged this with IBM / Ascential support, who suggested that I restore the project directory. The last backup was from Friday night, so we renamed the current directory, and restored from the backup. This seemed to make the 'problem' go away, but I have lost some work in the version c...
by cfuller
Mon Oct 31, 2005 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promotion not happening
Replies: 5
Views: 2074

When this started happening yesterday, next thing I tried was to put a brand new job into the project, which 'initiaized' fine...just couldn't promote it. :?
by cfuller
Mon Oct 31, 2005 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promotion not happening
Replies: 5
Views: 2074

Sorry...put this in the wrong forum...please move to Server.
by cfuller
Mon Oct 31, 2005 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promotion not happening
Replies: 5
Views: 2074

Promotion not happening

Hi all I have an issue that has manifested itself in the last 24 hours, and was hoping someone may have some insight into where I can go next in tryin to resolve this issue. We are utilising Version Control for all our promotion processes, and up until yesterday all has been going along well. Our pr...
by cfuller
Wed Oct 19, 2005 5:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpoint Restart Capability
Replies: 10
Views: 6333

At that time....'Employee'...no overtime 'it's part of your job' :cry:

Not there anymore. :wink:
by cfuller
Wed Oct 19, 2005 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpoint Restart Capability
Replies: 10
Views: 6333

I actually wrote the code, with a lot of help from someone else, in version 6, and have implemented it at 2 different sites I've worked at very successfully. Checkpoint restart was not available in V6, and when you are running a job stream containing over 1500 jobs, you don't want to have to run the...
by cfuller
Tue Oct 18, 2005 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpoint Restart Capability
Replies: 10
Views: 6333

You may need to be a little careful...one thing I have noted is that the Checkpoint Restart information must be held within the jobs information in Universe, and if for some reason you need to re-build the job you can lose that restart capability (depending on were the error was). :shock: Another so...
by cfuller
Thu Oct 13, 2005 12:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: copy of jobs
Replies: 2
Views: 1081

Use Export command from the Manager, edit dsx using a text editor, find 'ReadOnly' and change from 1 to 0, and then re-import. :wink:
by cfuller
Wed Oct 12, 2005 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating secondary index on hash file from a routine
Replies: 3
Views: 1593

Thanks Ray...

Actually I had the BUILD.INDEX further down in my routine, but seeing as how I couldn't get the CREATE.INDEX to work, the BUILD.INDEX was being bypassed due to the CREATE.INDEX failing....I supplied a code snippet, not the whole routine.

Cheers :lol:
by cfuller
Tue Oct 11, 2005 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating secondary index on hash file from a routine
Replies: 3
Views: 1593

Did some more digging and altered the command to now be - Command="CREATE.INDEX " : vHashFile : " " : vIndexCol Call DSExecute('UV', Command, Output, SystemReturnCode) Silly mistake on my part.... :oops: :!: (had local variable within quoted string, instead of concatinating it al...