Search found 15603 matches

by ArndW
Wed May 03, 2006 4:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file warning message
Replies: 5
Views: 1593

If this message is while you are doing "view data" then it is not going to affect the runtime processing of the data. If you are getting this warning during execution of your job then it is a problem.
by ArndW
Wed May 03, 2006 4:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to compile a job
Replies: 12
Views: 4148

You don't need to recompile a routine in order to make it running from a job or a sequence. If you have issued a call to DSAttachJob() somewhere in your process then you can issue a command

Code: Select all

JobHandle = DSPrepareJob(JobHandle)
and it will reset an aborted job prior to running.
by ArndW
Tue May 02, 2006 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using stage variable value of one job
Replies: 4
Views: 1100

No, the stage variables are per process/stage only and are not accessible anywhere else.
by ArndW
Tue May 02, 2006 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle LOW values
Replies: 5
Views: 3882

The low value in char is 0x00, so you could try redefining your defaults in the input stage to use a space instead of char(0).
by ArndW
Tue May 02, 2006 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle LOW values
Replies: 5
Views: 3882

What are the data types that have the cobol LOW VALUEs? You will need to make a transform or derivation to handle them, as it seems they are outside of your database's legal range. Perhaps they are date or timestamp fields?
by ArndW
Tue May 02, 2006 2:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string into date format
Replies: 2
Views: 1109

Are you using "inputColumn" or something like In.ColumnName without quotes in your job?
by ArndW
Tue May 02, 2006 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to see the existing jobs
Replies: 9
Views: 2491

Kumar_j - it seems that your indices have been corrupted; this is why the client tools won't show a job while an import states that it exists already. You can use the DS.TOOLS menu and choose to reindex your project to fix this problem.
by ArndW
Sun Apr 30, 2006 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading comp-3 field from AS400 with Ascential driver
Replies: 17
Views: 5310

Could the value be written as a normal representation? If you are certain that the field contains COMP-3 then you must ensure that it is read as a binary field to make sure that no EBCDIC or other conversions are performed then use the SDK routine to convert. Can you read the char, write it to a seq...
by ArndW
Sun Apr 30, 2006 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading comp-3 field from AS400 with Ascential driver
Replies: 17
Views: 5310

Hello Gil,

DB/2 does not have a COMP-3 data type. What is the defined data type of the column you are reading?
by ArndW
Fri Apr 28, 2006 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Repository Interface
Replies: 4
Views: 1441

Do you have permissions on the RT_CONFIG114 file on the server? Or in the project directory? This looks like it is the most likely problem cause. We can't tell you if you have enough space in the project directory to create new or extend old files, you will need to check that yourself.
by ArndW
Fri Apr 28, 2006 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to retrieve data on a different domain
Replies: 8
Views: 1422

"Can't" is awfully vague for a problem description. Do you get an error message when you do a view data on a mapped file? What happens when you try to write to that directory - perhaps the error message is a bit clearer then. In fact, what is the error message you are getting?
by ArndW
Fri Apr 28, 2006 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Load against Partitioned Tables
Replies: 7
Views: 4760

I have caused the same problem before; when using normal inserts against a partitioned table everything went well but I made the DBAs unhappy due to the backup pending state where they had to restore a whole tablespace. I hate posting a "me too" thread because I cannot recall exactly what the cause ...
by ArndW
Fri Apr 28, 2006 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to create arrays in datastage basic routines
Replies: 5
Views: 5481

You mean the @AM to @FM in the first quote :)
by ArndW
Fri Apr 28, 2006 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is Compiled, but Failed to Start
Replies: 9
Views: 2453

Does your userid have the UNIX permissions to change this file; this might be causing your problem. You can check from a shell or from TCL by doing a "ED RT_STATUS916 DUMMY"; if you only have read permission the editor will warn you that the file is read-only, then exit the EDitor using "Q".
by ArndW
Fri Apr 28, 2006 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is Compiled, but Failed to Start
Replies: 9
Views: 2453

If you go to TCL or the Administrator does a "COUNT RT_STATUS916" return a number or an error message?