SSPI authentication failed for user "xxx"

2023-05-28 Thread Albert Praveen
Hello, Following the upgrade from version 12.5 to 12.14, you have encountered an issue where the windows application fails to connect, and the log messages indicate the following: FATAL: SSPI authentication failed for user "xxx". DETAIL: Connection matched pg_hba.conf. The application establis

Re: How to make the generate_series to generate the letter series?

2023-05-28 Thread Ian Lawrence Barwick
2023年5月29日(月) 12:39 Wen Yi <896634...@qq.com>: > > Hi team, > when I study the generate_series function, I found that it can not only > generate the number series but also can generate the date series.(ref: > https://www.postgresql.org/docs/current/functions-srf.html) > That means I can make the

How to make the generate_series to generate the letter series?

2023-05-28 Thread Wen Yi
Hi team, when I study the generate_series function, I found that it can not only generate the number series but also can generate the date series.(ref: https://www.postgresql.org/docs/current/functions-srf.html) That means I can make the generate_series to generate the letter series. So I try t

Re: A question about generate_series

2023-05-28 Thread Wen Yi
Oh, I change my terminal settings (gnome-terminal), it works, thanks very much! Yours, Wen Yi   BeginnerC 896634...@qq.com  

Re: A question about generate_series

2023-05-28 Thread Tom Lane
"=?gb18030?B?zsTSuw==?=" <896634...@qq.com> writes: > postgres=# SELECT x FROM generate_series(1, 25, 1) As x; >  x   > >   1 >   2 >   3 >   4 >   5 >   6 >   7 >   8 >   9 >  10 >  11 >  12 >  13 >  14 >  15 >  16 >  17 >  18 >  19 >  20 >  21 > Time: 0.518 ms > My question is, why postgre

Re: A question about generate_series

2023-05-28 Thread David G. Johnston
On Sunday, May 28, 2023, 文一 <896634...@qq.com> wrote: > Hi team, > when I use the generate_series,as you can see > (Fedora Linux 37, PGSQL 15.3) > > postgres=# SELECT x FROM generate_series(1, 25, 1) As x; > x > > 1 > 2 > 3 > 4 > 5 > 6 > 7 > 8 > 9 > 10 > 11 > 12 > 13 >

A question about generate_series

2023-05-28 Thread ????
Hi team, when I use the generate_series,as you can see (Fedora Linux 37, PGSQL 15.3) postgres=# SELECT x FROM generate_series(1, 25, 1) As x;  x     1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21 Time: 0.518 ms My question is, why postgres didn't print