On 4/27/06, Philip Dodds <[EMAIL PROTECTED]> wrote: > I just starting working with DDL utils in an Oracle 9i environment and the > XML doesn't appear to be storing the precision on the number(8,6)? Is this > a setting or something I have misunderstood?
What are you trying to achieve ? In the XML schema, the size/precision+scale information is stored in the size attribute. E.g. a column avalue of type DECIMAL(15,7) would be specified as: <column name='avalue' type='DECIMAL' size='15,7'/> in the schema XML. Tom
