I'm trying to save the results of a recursive query into a table.
my recustive table = temptab
INSERT INTO MYSCHEMA.MY_TABLE
SELECT * FROM TEMPTAB
I get an error message "unexpected token: insert".
I also tried creating a view and creating a table based on the select statement; all give me the same message about an "unexpected token."
Any ideas?
Nolan