Search found 4605 matches

by kduke
Thu Sep 23, 2004 10:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

Geez Ken,

I think you are losing it.

I'm a little teapot short and stout, here is my handle, here is my spout.


Too many babies hath made thee mad.
by kduke
Thu Sep 23, 2004 10:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Validation
Replies: 15
Views: 4066

I do not see that it is a big deal on DataStage's encryption. If you have Director access then you pretty much need to know the passwords. How many people are giving out DataStage clients to users which do not know these passwords? This is not an issue. For national security reasons the USA algorith...
by kduke
Thu Sep 23, 2004 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bus error (Coredump)
Replies: 22
Views: 7909

Craig How many files match *. There is a limit in the kernel of how big argv and argc. These correspond to $# in a shell script. Therefore you can blow out these arrays. If you patched your UNIX lately then these can get reset. I would wrap the shell script into one without arguments and try executi...
by kduke
Thu Sep 23, 2004 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

Craig

Good idea. Try running a normal execute.

Code: Select all

Cmd = 'SH -c "clear.file ':filepath:'"
execute Cmd capturing output
print output
by kduke
Thu Sep 23, 2004 1:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

When you attach to a job then DataStage makes your current directory the project's directory. Ray was saying that this command will only work in the project directory. I have never used this command in this way so I would trust Ray.
by kduke
Thu Sep 23, 2004 12:25 pm
Forum: Site/Forum
Topic: DataStage Xchange white papers and articles
Replies: 4
Views: 3551

Leroy

Some of the articles I think considered property of Ascential and therefore not to be published except by Ascential.
by kduke
Thu Sep 23, 2004 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

Are you in the project directory?
by kduke
Thu Sep 23, 2004 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conection broken while connecting to project
Replies: 4
Views: 1237

The problem is somewhere in your network.
by kduke
Thu Sep 23, 2004 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Re-configuring the Reporting Tool?
Replies: 5
Views: 1300

Not that I know of, maybe Ray knows.
by kduke
Thu Sep 23, 2004 11:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

Some how it is doing something that it cannot recover from so you are not getting good error messages. Do the same command at the UNIX prompt but be in the project directory. See what happens.
by kduke
Thu Sep 23, 2004 9:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

If the last 2 lines are not in the log then you are failing hard meaning you are probably core dumping. Your hash file may be corrupt or your filepath is bad or you need to quote it properly. If there is a space in this filepath then you could be clearing a directory or something other than what you...
by kduke
Thu Sep 23, 2004 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Re-configuring the Reporting Tool?
Replies: 5
Views: 1300

I would not change your DSN. Just update the local one and archive onto a shared drive. I have macros which will truncate all the tables and then I compact and repair it. Next I populate it with a new project or the same project with new data. If you keep these access files small they performa bette...
by kduke
Thu Sep 23, 2004 9:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column combinations-Cartesian product
Replies: 8
Views: 2450

DataStage does require a lot of disk space and it does need to be managed. Staging should be done within DataStage itself in hash files or sequential files. If you do not do that then your ETL will not perform as well as possible. I think whoever made this decision does not understand how DataStage ...
by kduke
Wed Sep 22, 2004 12:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP stage
Replies: 1
Views: 743

An FTP stage is kind of like reading from a sequential file. I does require a user and password. It starts processing the data before the whole file is read. It is hard to debug connection issues. I prefer ftping in a shell script and then processing the sequential file. Easier to debug. We have had...
by kduke
Wed Sep 22, 2004 12:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Validation
Replies: 15
Views: 4066

By the way the encryption algorithms are supposed to be one way meaning they excrypt what you type in and compare it to what is stored in /etc/passwd or your shadow file. The algorithms are supposed to be different outside of the USA. So your problem should not be valid inside of the USA.