Problems using psql--Fatal password authentication failed

From: Kindra Martinenko <kindramart(at)yahoo(dot)com>
To: Guy Flaherty <naoshika(at)gmail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Problems using psql--Fatal password authentication failed
Date: 2009-06-26 19:14:33
Message-ID: 161429.18537.qm@web30203.mail.mud.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Thanks Guy--I'll try the datestyle thing, but ...

Now, yet another problem I am having is being able to launch the psql command line. It gives me a "FATAL: password authentication failed for User "Kindra".

This is the first time I have even touched psql, I usually work straight from PGAdmin III. When I type this after the prompt, it just keeps returning the same error, although I can access PGAdmin III with this password? I am confused.

[command prompt line:\]psql U-Kindra
password (trust level is set at md5): ******
FATAL: password authentication failed for User "Kindra

I launched the pg_hba.conf file, and attempted to set the trust level to "trust", however, Windows (being Windows)...would not allow me to save the .conf file? Does anyone have a workaround for FATAL password authentication errors and .conf file modification in a Windows environment?

Thanks!

Kindra

________________________________
From: Guy Flaherty <naoshika(at)gmail(dot)com>
To: Kindra Martinenko <kindramart(at)yahoo(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Sent: Thursday, June 25, 2009 11:12:39 PM
Subject: Re: [NOVICE] Problems importing csv files

On Fri, Jun 26, 2009 at 2:38 PM, Kindra Martinenko <kindramart(at)yahoo(dot)com> wrote:

>
>Thanks to Tim, Robert, et. al. for helping with the import csv problem. Using your suggestions, I believe I was able to rectify that particular issue.
>
>
>However, now I am having the problem of using the proper DATE and TIME syntax. I have looked in the Postgres manual, and it gives a whole long list of different date and time functions, but I am not sure which one I should use and how to integrate it into a "create table as" command.
>
>
>the csv file was created in MS Excel (yes I use Windows).
>
>
>At the moment, the easy work-around is to simply define each column as "text". The csv imported perfectly doing it this way, however, I want to use the proper syntax and formatting whenever possible:
>
>
>convert date as text (mm/dd/yyyy) to yyyy-mm-dd
>
>
>convert time as text (hh:mm) to time without timezone hh:mm:ss
>
>
>
>
>So, my question is, what do I need to do to my query language to ensure that posgresql processes the query successfully using the specified formats? I'm using v. 8.3 of PostgreSQL.
>
>
>thanks in advance,
>
>
>Kindra
You should be able to use the copy command but you may need to change the 'DATESTYLE' configuration first. Usually this is set to ISO,MDY. If the data in your csv file is in the format of mm/dd/yyyy this should copy straight into a column that uses date as its type. The same should work fine for the times.

You can check the value of datestyle before you run the copy command by using 'SHOW DATESTYLE;' If it doesn't come back with 'ISO,MDY' you can set it with 'SET datestyle = 'ISO,MDY' and then run your copy command again.

Guy Flaherty

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Guy Flaherty 2009-06-26 22:31:39 Re: Problems using psql--Fatal password authentication failed
Previous Message Guy Flaherty 2009-06-26 06:12:39 Re: Problems importing csv files