@All Users Group , can someone please advise on this question? using community edition databricks can we connect PostgreSql is this possible,since I ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2022 12:51 PM
@All Users Group ,
can someone please advise on this question?
using community edition databricks can we connect PostgreSql is this possible,since I have tried but I was getting the error, please refer to the below post for more details
I really appreciate any help you can provide.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2022 10:32 PM
It is possible, but it looks like your code is a little bit messy.
Check this article up:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 09:55 AM
@Daniel Sahal
please check i have just followed exactly the same as per the databricks documentation.but still getting the error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 11:07 AM
@Daniel Sahal
DROP TABLE IF EXISTS postgresql_table;
CREATE TABLE postgresql_table
USING postgresql
OPTIONS (
dbtable '<table-name>',
host '<database-host-url>',
port '5432',
database '<database-name>',
user '<username>',
password '<password>'
);
what is that i need to enter in dbtable '<table-name>', ?
what is that i need to enter in host '<database-host-url>' ?
any sample example ?

