Hajo Sandschneider wrote :
>
>Hi everyone,
>
>I am experiencing problems while trying to alter a column that 
>has been 
>created with the column attribute 'NOT NULL' to accept NULL 
>values again.
>
>What is wrong about using a command like this: ALTER TABLE <myTable> 
>MODIFY <myColumn> INTEGER NULL
>
>The command is executed successfully, however the table 
>definition shows 
>still the 'NOT NULL' attribute for <myColumn>.
>
>We are using MaxDB 7.5.01.00 on a Linux server.
>
>Thanks a lot!
>- Hajo Sandschneider
>

Please execute

ALTER TABLE <myTable> MODIFY <myColumn> NULL.

Best Regards,
Thomas

-- 
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to