public inbox for [email protected]
help / color / mirror / Atom feedRe: load fom csv
2+ messages / 2 participants
[nested] [flat]
* Re: load fom csv
@ 2024-09-17 15:13 Andy Hartman <[email protected]>
2024-09-17 15:23 ` Re: load fom csv Adrian Klaver <[email protected]>
0 siblings, 1 reply; 2+ messages in thread
From: Andy Hartman @ 2024-09-17 15:13 UTC (permalink / raw)
To: Muhammad Usman Khan <[email protected]>; +Cc: [email protected]
Still when I try to run from my powershell script it hangs...
On Tue, Sep 17, 2024 at 8:31 AM Andy Hartman <[email protected]>
wrote:
> I have bad data in an Int field...
>
> Thanks for your help.
>
> On Tue, Sep 17, 2024 at 1:55 AM Muhammad Usman Khan <[email protected]>
> wrote:
>
>> Hi,
>> Try the following options:
>>
>>
>> - Check if psql is working independently:
>> psql -h $pgServer -d $pgDatabase -U $pgUser -c "SELECT 1;"
>> - Check for permission issues on the CSV file
>> - Run the command manually without variables
>> psql -h your_host -d your_db -U your_user -c "\COPY your_table FROM
>> 'C:/path/to/your/file.csv' DELIMITER ',' CSV HEADER;"
>> - set a timeout using the PGCONNECT_TIMEOUT environment variable:
>> $env:PGCONNECT_TIMEOUT=30
>>
>>
>>
>> On Mon, 16 Sept 2024 at 20:35, Andy Hartman <[email protected]>
>> wrote:
>>
>>> I'm trying to run this piece of code from Powershell and it just sits
>>> there and never comes back. There are only 131 records in the csv.
>>>
>>> $connectionString =
>>> "Host=$pgServer;Database=$pgDatabase;Username=$pgUser;Password=$pgPassword"
>>> $copyCommand = "\COPY $pgTable FROM '$csvPath' DELIMITER ',' CSV HEADER;"
>>>
>>> psql -h $pgServer -d $pgDatabase -U $pgUser -c $copyCommand
>>>
>>>
>>> how can I debug this?
>>>
>>> Table layout
>>>
>>> [image: image.png]
>>>
>>
Attachments:
[image/png] image.png (65.2K, 3-image.png)
download | view image
^ permalink raw reply [nested|flat] 2+ messages in thread
* Re: load fom csv
2024-09-17 15:13 Re: load fom csv Andy Hartman <[email protected]>
@ 2024-09-17 15:23 ` Adrian Klaver <[email protected]>
0 siblings, 0 replies; 2+ messages in thread
From: Adrian Klaver @ 2024-09-17 15:23 UTC (permalink / raw)
To: Andy Hartman <[email protected]>; Muhammad Usman Khan <[email protected]>; +Cc: [email protected]
On 9/17/24 08:13, Andy Hartman wrote:
> Still when I try to run from my powershell script it hangs...
>
And the Postgres log shows?
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 2+ messages in thread
end of thread, other threads:[~2024-09-17 15:23 UTC | newest]
Thread overview: 2+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2024-09-17 15:13 Re: load fom csv Andy Hartman <[email protected]>
2024-09-17 15:23 ` Adrian Klaver <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox