Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 593 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 593 Bytes

Amazon tech best sellers

instalation in postgres:

sudo apt install odbc-postgresql
# source: https://medium.com/@murat.bilal/installing-and-configuring-ubuntu-odbc-drivers-for-postgresql-database-c67500e87ead
touch config.json
echo {
    "server":"localhost",
    "database":"yourDatabaseName",
    "username":"yourUsername",
    "password":"yourPassword",
    "driver":"YourPostgresDriverName"
} > config.json
CREATE DATABASE amazon;