Subject Error when I modify default value for char field
Author m24paul
Hi
Using FB2, Windows 2003 Server.
I have domain:
CREATE DOMAIN BARCODE_DOMAIN AS
CHAR(13)
And field
CREATE TABLE SYS_PRODUCTS(
…
BARCODE BARCODE_DOMAIN /* BARCODE_DOMAIN = CHAR(13) */,
)

I'm using domain for tables where I don't have bare cod for product.
I try to modify default value in table SYS_PRODUCT to null and I get
this error:
"Implementation of text subtype 65289 not located."

How can I make this work?
Thanks,
Paul