I am trying to upload and run flows that pull from a Greenplum database. I can run them perfectly fine on my desktop designer.
I have a DB connection that uses the Simba PostgreSQL ODBC Driver. We installed this same driver on the server machine, but the server machine does not have a username and password assigned to that database so we have to left it blank. When uploading the flow and running on the server, this is the error message received:
"Error SQLDriverConnect: [Simba][PostgreSQL] (70) Cannot establish a connection with empty PWD."
This makes sense, but I'm not sure what the next step would be. We want to avoid granting server machine access if possible. I was under the impression that as long as it's 'public', no access would be needed for the DBs.
We then tried using DataDirect 7.1 Greenplum Wire Protocol, and a different error is received: "Error SQLDriverConnect: [DataDirect][ODBC Greenplum Wire Protocol driver]Insufficient information to connect to the data source."
We made sure to keep all names and driver versions the same. The flows are only built to read from the DB, not write into them. Any troubleshooting tips are greatly appreciated.
For the DataDirect Greenplum Wire Protocol driver error "Insufficient information to connect," verify that all required connection parameters (server, port, database, user, password) are included in the connection string. Missing any required fields can cause this error. Leaving the password blank is generally not supported by the ODBC drivers even if the database allows public access. The recommended approach is to configure a Run As user on the server with appropriate database permissions or create a service account with minimal read access and supply those credentials in the connection.
We have an account for the server but no associated password. We had success with the SQL server connection that did not require read access, so I'm surprised that we would need it for the Greenplum.
Wouldn't Run As require the user to 'share' credentials?
Is this the same case if using DataDirect Greenplum Wire Protocol instead of the Simba PostgreSQL ODBC driver?
Yes, the same general requirement applies when using the DataDirect Greenplum Wire Protocol driver: the connection needs sufficient authentication information, including a username and typically a password, to connect successfully. Without valid credentials or a supported authentication method, the driver will not establish a connection. So, just like with the Simba PostgreSQL ODBC driver, you cannot omit the password if the driver or database requires it.