Search found 15603 matches

by ArndW
Thu Jul 27, 2006 4:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view data set
Replies: 11
Views: 2272

So your DataSet schema does not contain a column called "ARR_CLUS_ID" yet your job definition for the same DataSet refers to this column.
by ArndW
Thu Jul 27, 2006 3:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view data set
Replies: 11
Views: 2272

But does the schema in the DataSet match your definitions in the job? And can you view the data in the Data Set Management utility?
by ArndW
Thu Jul 27, 2006 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rejected records
Replies: 16
Views: 6142

Sundar,

the warning is telling you that at least one record and more likely all 81 missing rows are being dropped because they have a NULL value and your target column does not allow nulls.
by ArndW
Thu Jul 27, 2006 3:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view data set
Replies: 11
Views: 2272

How have you checked this? The only reliable methods are to use the Tools -> Data Set Management or by calling the command line orchadmin program. This will show you the schema of the dataset and you need to compare that with your declared schema in the DataStage job.
by ArndW
Thu Jul 27, 2006 3:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to populate a char field
Replies: 12
Views: 4693

Would it be possible to do a quick server job to just load a couple of rows with some value in this column? This might produce a better error message or might work but will also serve to narrow down the error.
by ArndW
Thu Jul 27, 2006 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to populate a char field
Replies: 12
Views: 4693

Nic,
what is the column name you are using, and have you gone into the "edit row" attributes to ensure that you don't have some sort of a setting there that you aren't aware of?
by ArndW
Tue Jul 25, 2006 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: probelm reading signed packed data using CCF
Replies: 2
Views: 889

Can you just add a PIC X(001). to your column definition? Or is your picture of the data larger than the actual data?
by ArndW
Tue Jul 25, 2006 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we read directly from an Excel file
Replies: 8
Views: 1963

lol - I know that feeling; I'll retract my comment.

Nevertheless, without investing in expensive 3rd party ODBC software your route is the most viable option.
by ArndW
Tue Jul 25, 2006 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we read directly from an Excel file
Replies: 8
Views: 1963

...anrd always says he wont reply to URGENT and always provides the solution...lol.. I only do that when it is a really easy answer that you could get by using GOOGLE and I would feel like a cad for not answering :D p.s. Shree, if you read the original question you will see that the poster wanted t...
by ArndW
Tue Jul 25, 2006 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of job parameter in user defined SQL in input ODBC stage
Replies: 3
Views: 1034

Yes to both questions. In the user-defined SQL you can use job parameters by enclosing them in # signs, i.e. a select such as "SELECT (first,last,dob) FROM #Schema#.#TableName#". When using the parameters in a transform stage the # marks are not required. Best if you are unsure to use the drop-down ...
by ArndW
Mon Jul 24, 2006 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable-length record
Replies: 15
Views: 11546

Ray has already pointed out the main difficulties involved. The DataStage BASIC language does offer a method to read a sequential file by using direct positioning, so you could code a routine or program to read the next {n} bytes of a file, then parse the contents to decide which record type you hav...
by ArndW
Mon Jul 24, 2006 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using DataStage reported "Device" and "inode&
Replies: 3
Views: 1080

The local files are, as Ray has shown, easily found and tracked using the STAT.FILE contents. The difficulty lies in locating all those hashed files that aren't referenced in any VOC when given just a device and inode. I thought that some of the denizens here might be interested in how to get from a...
by ArndW
Mon Jul 24, 2006 11:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using DataStage reported "Device" and "inode&
Replies: 3
Views: 1080

Using DataStage reported "Device" and "inode&

Many of the file related internal displays and commands, notably the LIST.READU command, will show a DataStage user as having a Device and Inode open for a hashed file. Question: How do you find out what physical file is actually open? Answer: You need to take several steps in order to get the answe...
by ArndW
Mon Jul 24, 2006 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help req for setting proper ENV variable
Replies: 9
Views: 2472

When you schedule a job from the director in a default UNIX environment it will use "cron"; DataStage does not have it's own scheduler. Once you've scheduled the job, look at your crontab to see what the actual command is that is being issued. Also remember that this process needs to have the dsenv ...
by ArndW
Mon Jul 24, 2006 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable-length record
Replies: 15
Views: 11546

If the records are of variable length then there needs to be some character or characters that denotes the end-of-line, even when transferring the data in binary mode.

Does each record type have a fixed width, but each record type has a potentially different length from the others?