Re: create batch script to import into postgres tables

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: create batch script to import into postgres tables
Дата
Msg-id 519aa822-cb75-0565-1073-180c911f40a7@aklaver.com
обсуждение исходный текст
Ответ на Re: create batch script to import into postgres tables  (Pepe TD Vo <pepevo@yahoo.com>)
Ответы Re: create batch script to import into postgres tables  (Pepe TD Vo <pepevo@yahoo.com>)
Re: create batch script to import into postgres tables  (Pepe TD Vo <pepevo@yahoo.com>)
Список pgsql-admin
On 6/19/20 4:12 AM, Pepe TD Vo wrote:
> thank you,   I tried that too, remove the quote around the echo and it 
> prompt for password, as I mentioned no matter I put -P mypassword no 
> matter what I spell out password=mypassword still argument error

Once again -P has nothing to do with password. Also --password does not 
take an argument, it is meant to be used as is. The purpose is to force 
a password prompt. This is all spelled out here:

https://www.postgresql.org/docs/12/app-psql.html

Also spelled out in above is:

" It is also convenient to have a ~/.pgpass file to avoid regularly 
having to type in passwords. See Section 33.15 for more information."

And Section 33.15:

https://www.postgresql.org/docs/12/libpq-pgpass.html

"The file .pgpass in a user's home directory can contain passwords to be 
used if the connection requires a password (and no password has been 
specified otherwise).  ..."

Read more at link for how to do that.

> 
>  >>echo select count(*) from tableA; | "C:\Program 
> Files\PostgreSQL\11\bin\psql" -U PSmasteruser -d PSCIDR -h 
> hostname.amazonaws.com -p 5432
> 
>  >> echo select count(*) from tableA; | "C:\Program 
> Files\PostgreSQL\11\bin\psql" -U PSmasteruser -d PSCIDR -h 
> hostname.amazonaws.com -p 5432 password=mypassword
> 
> all usernames are same password.
> 
> thank you so much for all input.
> 
> v/r,
> 
> **
> *Bach-Nga

-- 
Adrian Klaver
adrian.klaver@aklaver.com



В списке pgsql-admin по дате отправления:

Предыдущее
От: Hotmail
Дата:
Сообщение: Re: Any optimizations using oracle_fdw with oracle tables thathave clob columns?
Следующее
От: Pepe TD Vo
Дата:
Сообщение: Re: create batch script to import into postgres tables