'TEIID31259 In the statement ending with token FALSE on line 144 column 80 the ddl is not valid: TEIID31248 No column B found in table A

I am tring to create View on top of source model table. I have below statements in my DDL file.

CREATE VIEW A
AS SELECT * FROM SM.A;
ALTER View "A" ALTER COLUMN "B" OPTIONS(set UPDATABLE FALSE);

But when I try to alter the column metadata, I am getting this error:

TEIID31259 In the statement ending with token FALSE on line 144 column 80 the ddl is not valid: TEIID31248 No column B found in table A

I need to know if I am doing something wrong here.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source