Options
- 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 ?