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