Search found 4 matches

by oanielsen
Wed Jan 26, 2005 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error - Data Source is empty!
Replies: 3
Views: 2080

Whenever I see that happen, it is usually a filepath issue. Are you sure the path is set correctly in flat file stage? By default the stage will keep the link name and write the file to the project directory.

/usr/opt/uv/DataStage/projectname/linkname
by oanielsen
Mon Nov 08, 2004 1:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File - Unable to open file
Replies: 2
Views: 1881

Is it a dynamic file? If so, check your dsconfig file and see what the T30FILE param is set to, If it is set to its default of 200, you may just have too many dynamic files open within your project at that certain time.

Ollie
by oanielsen
Fri Oct 29, 2004 11:58 am
Forum: Site/Forum
Topic: Ascentialworld feedback?
Replies: 3
Views: 3385

Our S.E. here in Kansas City seems to have quite a bit of interaction with the higher ups at Ascential. We have also seen Jim Welch now and then and he is always open to new ideas and thoughts each time we have met with him.

Oliver Nielsen
by oanielsen
Thu Sep 30, 2004 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 truncate and insert problem
Replies: 6
Views: 4762

Here is a little Korn Shell script that I use to delete a db2 table quickly. I call it load_blank.ksh if [ $# -ne 3 ] then print "You must enter the instance and database and table name" exit fi INSTANCE=$1 DATABASE=$2 TABLE=$3 db2 -v "connect to $DATABASE"; db2 -v "load fro...