Search found 53125 matches

by ray.wurlod
Wed May 03, 2006 8:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: floating point decimal not fully supported.
Replies: 7
Views: 4657

Change the metadata to Decimal 38,0 (with an explicit zero)
by ray.wurlod
Wed May 03, 2006 8:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Validation
Replies: 2
Views: 897

Search the forum for a server version of IsValid() that I posted a couple of days ago, or write your own specific date validity handler. FUNCTION IsValidDate(TheDate) Test = Iconv(TheDate, "D") ; * default order for this locale Status1 = Status() Test = Iconv(Th...
by ray.wurlod
Wed May 03, 2006 8:00 pm
Forum: Enhancement Wish List
Topic: Director logs can be browsed unlimited
Replies: 3
Views: 1961

Must be a huge log if it took over a month to refresh!!! :lol:

Glad I could help.
by ray.wurlod
Wed May 03, 2006 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to compile a job
Replies: 12
Views: 4148

You should never need to "compile" a job automatically, because there is no way that a job can become uncompiled once it has been compiled.
by ray.wurlod
Wed May 03, 2006 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid with date format
Replies: 13
Views: 5720

Here 'tis

Short Description ----------------- Reports whether test value complies with the rules for a particular data type Long Description ---------------- Returns NULL if either argument is not assigned or if the data type argument is null or unknown. Always returns 1 (true) if the test value argument is n...
by ray.wurlod
Wed May 03, 2006 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid with date format
Replies: 13
Views: 5720

Here 'tis

Short Description ----------------- Reports whether test value complies with the rules for a particular data type Long Description ---------------- Returns NULL if either argument is not assigned or if the data type argument is null or unknown. Always returns 1 (true) if the test value argument is n...
by ray.wurlod
Wed May 03, 2006 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to compile a job
Replies: 12
Views: 4148

There is no routine for compiling a job.
by ray.wurlod
Wed May 03, 2006 3:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe File
Replies: 10
Views: 2739

No you can't! You can browse the DataStage database.
by ray.wurlod
Wed May 03, 2006 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to allocate new pages in table space
Replies: 2
Views: 7088

It's in the database, not in DataStage. Have your DBA explain what it means. Basically the table space in which the table was created has been set up with a certain maximum size, and the table has hit that limit. The DBA can allocated more pages in the table space, but will probably ask you to justi...
by ray.wurlod
Tue May 02, 2006 10:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: architecture of 7.5
Replies: 15
Views: 4065

We do encourage. What we don't do is supply answers to interview questions, for reasons that have been canvassed more than once (and can be determined via Search). Most of us don't have DataStage software installed on our PCs. It's just too expensive! So we learn by working with - or, initially, bes...
by ray.wurlod
Tue May 02, 2006 8:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: version control
Replies: 4
Views: 992

It can't. That's why there are two separate tools. :roll:
by ray.wurlod
Tue May 02, 2006 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: floating point decimal not fully supported.
Replies: 7
Views: 4657

Change the table definition so that NUMBER is constrained - for example NUMBER(38) - so that DataStage does not interpret it as unlimited (that is, floating point).
by ray.wurlod
Tue May 02, 2006 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe File
Replies: 10
Views: 2739

UniVerse is a database product, marketed by IBM It is a database product that can compete with the likes of Oracle, Sybase, DB2 and so on. It contains tables, which are implemented using hashed file technology. It also includes a complete application development environment, support for triggers, HT...
by ray.wurlod
Tue May 02, 2006 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00942: table or view does not exist
Replies: 10
Views: 3330

What is x..y? Are there two dots between the schema name and the table name? This is not valid syntax.
by ray.wurlod
Tue May 02, 2006 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum in PX
Replies: 2
Views: 846

Checksum() is a BASIC function, so not directly available in parallel jobs. You can access it via a BASIC Transformer stage in a parallel job, with the concomitant overheads of data type translation that this incurs. You could also access it via server job componentry in a server shared container th...