Hi All,
I have a strange schema name to work with in postgres "apac.logistics@vivn.com". The table name is "TableName"
I am trying to load data from an excel file by creating the above table using Postgres Bulk loader and it fails with the below error.
Error: Output Data (9): Error creating table "apac.logistics@vivn.com.TableName": ERROR: improper qualified name (too many dotted names): apac.logistics@vivn.com.TableName;
Error while executing the query
CREATE TABLE "apac"."logistics@vivn"."com"."TableName" ("Level 1" varchar(255),"Level 2" varchar(255),"Level 3" varchar(255))
Any help on getting this working even though the issue is with the bad schema naming I have no access to change the schema name and is in use by other project teams.
I have tried the following while specifying the conection string but none work
apac.logistics@vivn.com.TableName
"apac.logistics@vivn.com.TableName"
"apac.logistics@vivn.com"."TableName"
Please advise on how I can fix this and proceed with the data load on table creation
Thanks