Hi Everyone,
I have a table called table1 and two text fields col1, col2. col1's nullable property is true, and col2's is false. I have succeeded in using jet sql:
ALTER TABLE table1 ALTER COLUMN col1 text(50) NOT NULL
to change col1's nullable property from true to false. However, when I tried to use
ALTER TABLE table1 ALTER COLUMN col2 text(50) NULL
to change col2's nullable property from false to true, it doesn't work as I expect. col2's nullable property remains false after executing the above sql statement. Can anyone suggest a solution to this?
Thanks,
Tatin
I have a table called table1 and two text fields col1, col2. col1's nullable property is true, and col2's is false. I have succeeded in using jet sql:
ALTER TABLE table1 ALTER COLUMN col1 text(50) NOT NULL
to change col1's nullable property from true to false. However, when I tried to use
ALTER TABLE table1 ALTER COLUMN col2 text(50) NULL
to change col2's nullable property from false to true, it doesn't work as I expect. col2's nullable property remains false after executing the above sql statement. Can anyone suggest a solution to this?
Thanks,
Tatin