Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

problem with create multiset volatile table

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...