I have a postgresql database table named “testIncomplete”, and I have a data table named Dt. The connection is tested and its connects when I try and read from the table I get the output but when I run the Insert
I get the error:
Insert: ERROR [0A000] ERROR: cross-database references are not implemented: “UiPath.public.testincomplete”;
Error while executing the query
The error message you’re encountering, “cross-database references are not implemented,” suggests that you are trying to reference a table from a different database within your SQL query. In this case, it seems you might be trying to reference the “testincomplete” table from a different database called “UiPath” which is not allowed in PostgreSQL.
Make sure that you are connected to the correct database (the one where the “testincomplete” table resides) when you’re executing the INSERT query. Double-check your connection settings and ensure that you are not accidentally referencing a table in a different database.