public inbox for [email protected]
help / color / mirror / Atom feedStrange benhavior of pgAdmin 9.8 on Windows
3+ messages / 2 participants
[nested] [flat]
* Strange benhavior of pgAdmin 9.8 on Windows
@ 2025-10-04 06:51 Marc Linster <[email protected]>
2025-10-07 05:33 ` Re: Strange benhavior of pgAdmin 9.8 on Windows Aditya Toshniwal <[email protected]>
0 siblings, 1 reply; 3+ messages in thread
From: Marc Linster @ 2025-10-04 06:51 UTC (permalink / raw)
To: pgadmin-support
Team:
I installed pgAdmin 9.8 on Windows 10 to teach a class. the query tool,
etc. seem to work well, but plsql tool shows a strange message, and
commands like \d seem to hang
Microsoft Windows [Version 10.0.22000.2538]
(c) Microsoft Corporation. All rights reserved.
C:\Program Files\PostgreSQL\18\pgAdmin 4\runtime>"C:\Program
Files\PostgreSQL\18\pg
Admin 4\runtime\psql.exe" "host=localhost port=5432 dbname=dlh3
user=postgres sslmo
de=prefer connect_timeout=10" 2>>&1
psql (18.0)
WARNING: Console code page (437) differs from Windows code page (1252)
8-bit characters might not work correctly. See psql reference
page "Notes for Windows users" for details.
Type "help" for help.
When I type '\d', only the '\' shows until I hit return, but execution only
starts after I hit return for the second time.
Standard plsql works fine.
For the purpose of teaching novices pgAdmin/Postgresql 18 it would be nice
if I could use plsql in the context of pgAdmin - which used to work.
Thanks for thelp, Marc
---------------------------------------
Marc Linster; [email protected];
https://www.linkedin.com/in/marclinster;
https://marclinster.medium.com
+352 621 430 156
^ permalink raw reply [nested|flat] 3+ messages in thread
* Re: Strange benhavior of pgAdmin 9.8 on Windows
2025-10-04 06:51 Strange benhavior of pgAdmin 9.8 on Windows Marc Linster <[email protected]>
@ 2025-10-07 05:33 ` Aditya Toshniwal <[email protected]>
2025-10-07 05:46 ` Re: Strange benhavior of pgAdmin 9.8 on Windows Aditya Toshniwal <[email protected]>
0 siblings, 1 reply; 3+ messages in thread
From: Aditya Toshniwal @ 2025-10-07 05:33 UTC (permalink / raw)
To: Marc Linster <[email protected]>; +Cc: pgadmin-support
Hi Marc,
I am able to reproduce the problem. But it is most likely because of the
warning below. I'm checking if we can fix this.
WARNING: Console code page (437) differs from Windows code page (1252)
8-bit characters might not work correctly. See psql reference
page "Notes for Windows users" for detail
On Sat, Oct 4, 2025 at 12:22 PM Marc Linster <[email protected]> wrote:
> Team:
>
> I installed pgAdmin 9.8 on Windows 10 to teach a class. the query tool,
> etc. seem to work well, but plsql tool shows a strange message, and
> commands like \d seem to hang
>
> Microsoft Windows [Version 10.0.22000.2538]
> (c) Microsoft Corporation. All rights reserved.
>
> C:\Program Files\PostgreSQL\18\pgAdmin 4\runtime>"C:\Program
> Files\PostgreSQL\18\pg
> Admin 4\runtime\psql.exe" "host=localhost port=5432 dbname=dlh3
> user=postgres sslmo
> de=prefer connect_timeout=10" 2>>&1
> psql (18.0)
> WARNING: Console code page (437) differs from Windows code page (1252)
> 8-bit characters might not work correctly. See psql reference
> page "Notes for Windows users" for details.
> Type "help" for help.
>
> When I type '\d', only the '\' shows until I hit return, but execution
> only starts after I hit return for the second time.
>
> Standard plsql works fine.
>
> For the purpose of teaching novices pgAdmin/Postgresql 18 it would be nice
> if I could use plsql in the context of pgAdmin - which used to work.
>
> Thanks for thelp, Marc
> ---------------------------------------
> Marc Linster; [email protected];
> https://www.linkedin.com/in/marclinster;
> https://marclinster.medium.com
> +352 621 430 156
>
--
Thanks,
Aditya Toshniwal
pgAdmin Hacker | Sr. Staff SDE II | *enterprisedb.com*
<https://www.enterprisedb.com/;
"Don't Complain about Heat, Plant a TREE"
^ permalink raw reply [nested|flat] 3+ messages in thread
* Re: Strange benhavior of pgAdmin 9.8 on Windows
2025-10-04 06:51 Strange benhavior of pgAdmin 9.8 on Windows Marc Linster <[email protected]>
2025-10-07 05:33 ` Re: Strange benhavior of pgAdmin 9.8 on Windows Aditya Toshniwal <[email protected]>
@ 2025-10-07 05:46 ` Aditya Toshniwal <[email protected]>
0 siblings, 0 replies; 3+ messages in thread
From: Aditya Toshniwal @ 2025-10-07 05:46 UTC (permalink / raw)
To: Marc Linster <[email protected]>; +Cc: pgadmin-support
OK, I'm getting the same issue even with chcp 1252. So that's not
the problem.
On Tue, Oct 7, 2025 at 11:03 AM Aditya Toshniwal <
[email protected]> wrote:
> Hi Marc,
>
> I am able to reproduce the problem. But it is most likely because of the
> warning below. I'm checking if we can fix this.
>
> WARNING: Console code page (437) differs from Windows code page (1252)
> 8-bit characters might not work correctly. See psql reference
> page "Notes for Windows users" for detail
>
>
> On Sat, Oct 4, 2025 at 12:22 PM Marc Linster <[email protected]> wrote:
>
>> Team:
>>
>> I installed pgAdmin 9.8 on Windows 10 to teach a class. the query tool,
>> etc. seem to work well, but plsql tool shows a strange message, and
>> commands like \d seem to hang
>>
>> Microsoft Windows [Version 10.0.22000.2538]
>> (c) Microsoft Corporation. All rights reserved.
>>
>> C:\Program Files\PostgreSQL\18\pgAdmin 4\runtime>"C:\Program
>> Files\PostgreSQL\18\pg
>> Admin 4\runtime\psql.exe" "host=localhost port=5432 dbname=dlh3
>> user=postgres sslmo
>> de=prefer connect_timeout=10" 2>>&1
>> psql (18.0)
>> WARNING: Console code page (437) differs from Windows code page (1252)
>> 8-bit characters might not work correctly. See psql reference
>> page "Notes for Windows users" for details.
>> Type "help" for help.
>>
>> When I type '\d', only the '\' shows until I hit return, but execution
>> only starts after I hit return for the second time.
>>
>> Standard plsql works fine.
>>
>> For the purpose of teaching novices pgAdmin/Postgresql 18 it would be
>> nice if I could use plsql in the context of pgAdmin - which used to work.
>>
>> Thanks for thelp, Marc
>> ---------------------------------------
>> Marc Linster; [email protected];
>> https://www.linkedin.com/in/marclinster;
>> https://marclinster.medium.com
>> +352 621 430 156
>>
>
>
> --
> Thanks,
> Aditya Toshniwal
> pgAdmin Hacker | Sr. Staff SDE II | *enterprisedb.com*
> <https://www.enterprisedb.com/;
> "Don't Complain about Heat, Plant a TREE"
>
--
Thanks,
Aditya Toshniwal
pgAdmin Hacker | Sr. Staff SDE II | *enterprisedb.com*
<https://www.enterprisedb.com/;
"Don't Complain about Heat, Plant a TREE"
^ permalink raw reply [nested|flat] 3+ messages in thread
end of thread, other threads:[~2025-10-07 05:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2025-10-04 06:51 Strange benhavior of pgAdmin 9.8 on Windows Marc Linster <[email protected]>
2025-10-07 05:33 ` Aditya Toshniwal <[email protected]>
2025-10-07 05:46 ` Aditya Toshniwal <[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