Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

If I run the following code, I get an error "'Create Table As' currently does not support Identity columns'...

CREATE MULTISET VOLATILE TABLE EVENT AS (SEL evt.*

from DB.Event evt inner join DB.lkp_Event_tp TP on evt.Event_tp_cd = TP.Event_tp_cd and evt.orig_src_sys_cd = tp.orig_src_sys_cd and evt.orig_src_sys_cd = 3) WITH NO DATA ON COMMIT PRESERVE ROWS;

so I've been given the hint to do this...

CREATE MULTISET VOLATILE TABLE EVENT AS select * from (SEL * from ....) b WITH NO DATA ON COMMIT PRESERVE ROWS;

but now the error has changed to "Syntax error - expected something like a name or a Unicode Delimited identifier....between 'AS' keyword and the select keyword.

What could be the issue here?

Thank you

Blockquote

question from:https://stackoverflow.com/questions/65897928/problem-with-create-multiset-volatile-table

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...