I need to speed up inserts into an Ingress VectorWise database, and the documentation shows this:
http://docs.actian.com/ingres-vectorwise/2.5/sql-language-guide/5315-insert
The INSERT statement inserts rows into a table.
This statement has the following format:
[REPEATED]]INSERT INTO [schema.]table_name
[(column {, column})]
[OVERRIDING SYSTEM VALUE | OVERRIDING USER VALUE]
[VALUES (expr{, expr}) {,(expr{ ,expr})} |
[WITH common_table_expression] subselect];
and says:
REPEATED: Saves the execution plan of the insert, which can make subsequent executions faster.
I can not for the life of me get a query using "REPEATED" to execute successfully, and I can't find any examples online using straight up SQL for it. Does anyone have any suggestions on how to get this to work syntactically?