Search found 42189 matches

by chulett
Fri May 20, 2011 6:30 am
Forum: General
Topic: &PH& file cleared but the directory size is not redu
Replies: 20
Views: 9837

Of course you can recreate the directory, just make sure you match the ownership and permissions if you do. And don't "clear" it if any jobs are running unless you stick with the "x days old" approach that Ray already posted.
by chulett
Fri May 20, 2011 6:25 am
Forum: General
Topic: help in DSJOB command
Replies: 16
Views: 11072

Do not run the jobs in the background or use the O/S wait. Do add the "-wait" option to the dsjob command.

Why not use a Sequence job with the Start/End Loop stages?
by chulett
Fri May 20, 2011 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data truncation is happening
Replies: 5
Views: 3967

Silly solution? More like an absolute requirement.
by chulett
Thu May 19, 2011 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Date fatal error
Replies: 12
Views: 3716

I thought (from other posts here) that DB2 wanted dates in internal format.
by chulett
Thu May 19, 2011 12:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: use of uvodbc.config file
Replies: 3
Views: 1560

From where? What does "calling SQL stmt" mean? Shell scripts run from the command line, not a TCL prompt. Are you attempting to use your database's CLI, such as sqlplus for Oracle?

You haven't given us much to work with here.
by chulett
Thu May 19, 2011 12:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Date fatal error
Replies: 12
Views: 3716

What is your target database? :?
by chulett
Thu May 19, 2011 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pivot job aborted with errors
Replies: 6
Views: 3063

So... in other words... one didn't show up.
by chulett
Thu May 19, 2011 9:20 am
Forum: General
Topic: &PH& file cleared but the directory size is not redu
Replies: 20
Views: 9837

The & is a shell metacharacter so you need to escape them as Ray did.
by chulett
Thu May 19, 2011 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extraction job fails
Replies: 12
Views: 5085

For whatever it is worth, that error code means:

0x40EC0, "Fetching requested number of rows will exceed total number of active rows supported by the rowset."
by chulett
Thu May 19, 2011 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Print Special characters
Replies: 5
Views: 1868

What exactly are you using to "see" the output?
by chulett
Thu May 19, 2011 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem when calling SP stage
Replies: 12
Views: 6368

evee1 wrote:If I change the contents of tnsnames.ora do I need to restart the Designer, or does it reads the ora file on request?
You don't need to restart anything after that change.
by chulett
Thu May 19, 2011 6:56 am
Forum: General
Topic: &PH& file cleared but the directory size is not redu
Replies: 20
Views: 9837

Then either change "-maxdepth 1" to "-depth" or remove it all together as it really isn't needed for this task.
by chulett
Thu May 19, 2011 6:53 am
Forum: General
Topic: &PH& file cleared but the directory size is not redu
Replies: 20
Views: 9837

That option may be platform specific, check your man page as I suggested. And Ray missed the "where to search" part, add a "dot" right after the find and see if that helps: find . \&PH\& -maxdepth 1 -type f -mtime +10 -exec rm {} \; Assuming you are parked where it should...
by chulett
Thu May 19, 2011 6:44 am
Forum: General
Topic: Infosphere Datastage CLI
Replies: 2
Views: 2064

From the "command line" of the DataStage server, i.e. from your operating system. Both istool and dsjob can be run from there.
by chulett
Thu May 19, 2011 6:32 am
Forum: General
Topic: &PH& file cleared but the directory size is not redu
Replies: 20
Views: 9837

From the command line: "man find"... and basically "yes" to the second question.