Please take this survey to help us learn more about how you use third party tools. Your input is greatly appreciated!
INSERT Errors using vertica docker image
Hi, I am using the vertica-docker image and access Vertica using the jdbc-driver with DBVisualizer or C# Vertica.Data package. I can create an example table with
CREATE TABLE Persons (PersonID int, LastName varchar(255), FirstName varchar(255), Address varchar(255), City varchar(255));
The table is created in the schema public. However, when I try to insert data using
INSERT INTO TABLE public.Persons VALUES(1, 'Max', 'Muster', 'Street_1', 'Berlin');
I get an error : [Code: 4856, SQL State: 42601] [Vertica]VJDBC ERROR: Syntax error at or near "TABLE"
Any idea? Thanks!
Tagged:
0
Best Answers
-
DaveT Employee
I assume you mean you downloaded the virtual image. As for the INSERT statement remove the word “TABLE”. That is not part of the INSERT syntax.5
Leave a Comment
Can't find what you're looking for? Search the Vertica Documentation, Knowledge Base, or Blog for more information.