Re: How to execute the sql file in PSQL

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Mark <jxustnc(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: How to execute the sql file in PSQL
Date: 2020-10-05 15:33:57
Message-ID: a48811ee-6332-2fe6-3a20-be4ce70b8bb2@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 10/5/20 7:55 AM, Mark wrote:
>
>
> Stackoverflow question link:
> https://stackoverflow.com/questions/64210281/using-psql-executing-sql-format-file-shows-permission-denied-on-windows-platform
>
>
> I followed one PostgreSQL tutorial step by step. One session to use PSQL
> to execute sql files to create a new database in PostgreSQL.
>
> 1.  copy  paste the sql file within "C:\Program Files\PostgreSQL\12"
> directory.
> 2.  execute the following code \i  C:\\Program
> Files\\PostgreSQL\\12\\demo-big-en-20170815.sql
>
> Failed
> The message shows C:: Permission denied
> then tried  \ir  "C:\\Program
> Files\\PostgreSQL\\12\\demo-big-en-20170815.sql"
> Failed
> The message shows unrecognized win32 error code: 123"C:/Program
> Files/PostgreSQL/12/createdatabasesupertest.sql: Invalid argument
>
> SQL file probably was wrong. SO I tried to create a simple sql file
> (create a new database). Then  I follow the above mentioned step to
> execute the file on windows PSQL.  But  it failed the same way just like
> the above mentioned.
>
> So basically my PSQL can not run script files.  What should i do?

The issue is the user you are running psql as does not have permissions
to read the file. This is a OS permissions thing. Either run psql as a
user that can read the file or change the permissions on the file to
those that allow the psql user to read it.

>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message James B. Byrne 2020-10-05 15:43:21 Re: UUID generation problem
Previous Message Adrian Klaver 2020-10-05 15:15:25 Re: UUID generation problem