Search found 15603 matches

by ArndW
Fri Mar 24, 2006 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compile error
Replies: 8
Views: 1524

Kumar - UNLOCK ALL as administrator is very powerful and should not be used! It has a potential to really mess up a DS environment since all concurrency control in DataStage is based on locks. In this case if no jobs are running and no users are logged in the appropriate lock(s) should be easy to sp...
by ArndW
Fri Mar 24, 2006 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in Column Export
Replies: 9
Views: 2135

Unless you can define your source string type to be the same length or shorter than the output the PX system will always give you the informational warning and your only option is to use the message handler to demote or remove the warning.
by ArndW
Fri Mar 24, 2006 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove all spaces from a string
Replies: 7
Views: 2002

Have you tried using embedded functions? I got a runtime fatal error with string_trim(string_trim(In.Col)) in a modify stage and couldn't see anything in the docs or on this site about using multiple functions.
by ArndW
Fri Mar 24, 2006 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot kill a running Job
Replies: 4
Views: 3100

You can try to clear the log file from the director; this might get rid of the data error, otherwise exporting the job, deleting it from the repository and re-importing should work.
by ArndW
Fri Mar 24, 2006 2:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in Column Export
Replies: 9
Views: 2135

You can set up message handlers and deprecate this warning message to an informational one or even remove it from the log completely (not a good idea, in my opinion).
by ArndW
Fri Mar 24, 2006 2:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove all spaces from a string
Replies: 7
Views: 2002

Vincent - thanks for helping to confirm that it can't directly be done in a modify stage. I like your approach, even my positive numbers have a space in that first position - I tried using decimal_from_string(string_trim(In.Col)) yesterday but it would seem that the modify stage only likes single fu...
by ArndW
Fri Mar 24, 2006 2:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concurrently Accessing the Same Routine.
Replies: 8
Views: 2624

Let's see: (a) your routine stop running with an "abort". (b) You have 2 abort statements in your routine. Try putting in ON ERROR and getting the STATUS() and printing it out with a call to DSLogWarn() to see why you are getting a failed open or read. This is also logically the place in the program...
by ArndW
Fri Mar 24, 2006 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Practical Examples/tests to train new resource
Replies: 4
Views: 1275

The product ships with a tutorial as well which can help learn the basics.
by ArndW
Fri Mar 24, 2006 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compile error
Replies: 8
Views: 1524

The message comes because there is a lock on a table record fro that job. If another user is editing the job, if it is running or if a monitor is open this is the message you will see. One other cause is if the job has somehow aborted or been killed so that the locks remain. If this is the case then...
by ArndW
Thu Mar 23, 2006 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Sequences
Replies: 2
Views: 908

Are you referring to the category of a job? If so, the category is not part of the job name, it is a display attribute used for grouping in the client tools. If this isn't what you meant, please explain what you mean by "moving" a job.
by ArndW
Thu Mar 23, 2006 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove all spaces from a string
Replies: 7
Views: 2002

Remove all spaces from a string

I have a string in the format "- 123.45" which I would like to change to decimal[15,2] without using a transform stage. Since there are spaces between the sign and the number the normal conversion to decimal_from_string will fail. The TRIM({string},' ','A') function in the transform stage to remove ...
by ArndW
Thu Mar 23, 2006 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create a Project with deleted name
Replies: 21
Views: 6875

From this thread you will have seen 2 places in the engine which might prevent an account from being re-used. The first is an entry in the UV.ACCOUNT file and the other is an entry in the UV_SCHEMA. Does your bad project exist in the UV_SCHEMA file (LIST UV_SCHEMA {projectname})?
by ArndW
Thu Mar 23, 2006 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Open the Jobs in DataStage Designer
Replies: 7
Views: 2842

If a job was created with a userid that had an incorrect umask setting, the it might be possible for one user to open and work with a job while others cannot.
by ArndW
Thu Mar 23, 2006 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Deduping
Replies: 16
Views: 3356

1. Write a temporary DS job copy of your original to write just the 3 key columns to a sequential file call myfile.txt. 2. wc -l myfile.txt to get the number of lines. 3. sort -u myfile.txt > otherfile.txt 4. wc -l otherfile.txt are the counts in 2 & 4 the same? if you look at otherfile.tx t do ...
by ArndW
Thu Mar 23, 2006 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Open the Jobs in DataStage Designer
Replies: 7
Views: 2842

Ahh - I missed that; thanks. I thought it might be a connectivity issue.

Latha - are you logging into the Designer with the same userid on your machine (which isn't working) and on the other (which is)? If not, does your userid/login work on the other client PC?