|
|
Archives of the TeradataForum
Message Posted: Mon, 21 Jul 2003 @ 21:09:15 GMT
Subj: | | Alter table modify question |
|
From: | | Jake Johnson |
I am trying to add three characters to col2 and it doesn't work.
---create table
CREATE MULTISET TABLE tbl.dim, fallback
(
col1 INTEGER NOT NULL,
col2 CHAR(33) CASESPECIFIC
)
UNIQUE PRIMARY INDEX x01 (col1);
---alter table
alter table tbl.dim modify char(36);
---error
3707: Syntax error, expected somthing like a 'CHECK' keywork between the
'modify' keyword and the 'char' keyword.
Thanks,
Jake Johnson
| |