Subject | Re: [firebird-support] Altering a domain |
---|---|
Author | Aldo Caruso |
Post date | 2015-06-16T18:58:44Z |
Ann,
thank you very much for your clear explanation.
Aldo
thank you very much for your clear explanation.
Aldo
El 16/06/15 a las 12:44, Ann Harrison
aharrison@... [firebird-support] escibiĆ³:
On Tue, Jun 16, 2015 at 11:15 AM, Aldo Caruso aldo.caruso@... [firebird-support] <firebird-support@yahoogroups.com> wrote:
I have defined the following domain :
CREATE DOMAIN CURRENCY AS decimal(9,2)
I would like to alter it as the following :
ALTER DOMAIN CURRENCY AS decimal(18,2)
I have many fields in tables that depend on this domain and they
are filled with values.
Will they be restructured in their internal representation ( from
INTEGER to BIGINT in dialect 3 ) with no harm for the stored data ?
Initially, only the domain and column definitions will change, creating newformat versions for the tables affected. When you insert new records intothose tables, the new records will have the new format. Old records willbe changed in memory when you read them, so they appear to be in thenew format. The stored format of existing records change when therecords are modified.
Good luck,
Ann