pg_sql | Unsorted

Telegram-канал pg_sql - PostgreSQL

2830

English speaking PostgreSQL public chat. This group is for discussions on PostgreSQL-related topics and strives to provide best-effort support as well.

Subscribe to a channel

PostgreSQL

Major or minor upgrade? In the easiest way (just minor update for both) it's essentially
yum update
or
apt update; apt upgrade

Читать полностью…

PostgreSQL

Yes we are planning for same time upgrade, i did not mean any special document , like can I have steps

Читать полностью…

PostgreSQL

So the SP returns nothing? Then we'll need to see the procedure (a function, actually, but...) or you'll have to debug it. Did you check the changelogs of 13 and 14 for (breaking) changes in PL handling?

Читать полностью…

PostgreSQL

Hello everyone
Do any one have upgrade documents of pgpool along with Postgres upgrade

Читать полностью…

PostgreSQL

Hello PALS
I have upgraded my Postgres from 12 to 14.7 after the upgrade I am facing issue with one of my stored procedure

Читать полностью…

PostgreSQL

From what I understand MariaDB is compatible with Wordpress plugins

Читать полностью…

PostgreSQL

I would also like to use some Wordpress plugins

Читать полностью…

PostgreSQL

https://mariadb.com/products/enterprise/comparison/

Читать полностью…

PostgreSQL

PostgreSQL Person of the Week interview with: Nicolas Payart

https://postgresql.life/post/nicolas_payart/

Читать полностью…

PostgreSQL

For any sql , BI tools (SSIS SSRS, Power BI)

Online job support and individual/ batch training
Please reach out

Читать полностью…

PostgreSQL

I am unable to get libmemcached package on Google

Читать полностью…

PostgreSQL

search for it then and find a github repository for pgpool specifically, u will find a lot talking about different issues surely u will find a match for your reuqest if it is a common issue or just pull your logs on it and wait for answers

Читать полностью…

PostgreSQL

Try to install libmemcached

Читать полностью…

PostgreSQL

-nothing provides libmemcached.so.11()(64bit) needed by pgpool-II-pg16-4.5betal-1pgdg.rge19.x86_64 from pgpool145

Читать полностью…

PostgreSQL

CREATE EXTENSION IF NOT EXISTS ltree WITH SCHEMA public;

CREATE FUNCTION public.escape_ltree(text) RETURNS public.ltree
LANGUAGE sql IMMUTABLE STRICT
AS $_$

WITH string AS (
SELECT array_to_string(array_agg(
CASE
WHEN chr = '' THEN ''
WHEN chr = '_' THEN '__'
WHEN chr ~ '[0-9A-Za-z]' THEN chr
WHEN strpos('-! "#$%&''()*+,./:;<=>?@[\]^ ^`^y`{|}~\ ', chr) != 0 THEN '_'||substr('0123456789abcdefghijklmnopqrstuvwxyz', strpos('-! "#$%&''()*+,./:;<=>?@[\]^ ^`^y`{|}~\ ', chr), 1)||'_'
ELSE '_'||to_hex(ascii(chr))||'_'
END), '') AS ee FROM (SELECT regexp_split_to_table($1, '') AS chr) a
) SELECT (CASE WHEN length(ee) >= 256 THEN ('_H_'||encode(sha224(convert_to($1, 'UTF8')), 'hex')) ELSE ee END)::ltree FROM string;
$_$;


Fails with

psql:foxo_blue_schema.sql:718: ERROR:  type "ltree" does not exist                                                  
LINE 12: ...24(convert_to($1, 'UTF8')), 'hex')) ELSE ee END)::ltree FROM...

Читать полностью…

PostgreSQL

I did try to search but couldn’t find any steps for same @NickBluth

Читать полностью…

PostgreSQL

Yea the SP Returns nothing ,thanks for the input we neeed to chekc the function

Читать полностью…

PostgreSQL

Since both will cause a brief downtime, upgrade them at the same time. I don't really see what special documentation would be needed... 🤷

Читать полностью…

PostgreSQL

We are calling this trough API call , it throws error as rows_to_jason due to which not able to see any output from the store procedure

Читать полностью…

PostgreSQL

However I would like to know where would PostgreSQL would standout over MariaDB for my use case considering that the web applications would be developed from scratch

Читать полностью…

PostgreSQL

and adapt or modify them

Читать полностью…

PostgreSQL

I am trying to decide what RDBMS would suit better the development of a series of web applications that intend to digitalise a medical clinic that has no online management systems and only has a Wordpress site. On one hand MariaDB is a drop in replacement to MySQL and has the power of a procedural language that could come in quite handy for the web applications that would be developed on the other hand PostgreSQL is advertised as more robust. I am new to both MariaDB and PostgreSQL. The medical clinic is a small company with great potential to grow. Could someone point me in the right direction?

Читать полностью…

PostgreSQL

Excuse me someone has installed postgis in postgres 13.12 in S.O open suse 15.4 y do not find repository

Читать полностью…

PostgreSQL

Hi guys anyone have maintenance tasks cron job such reindexe or vacuum that need to be applied on PostgreSQL

Читать полностью…

PostgreSQL

https://rpmfind.net/linux/rpm2html/search.php?query=libmemcached.so.11()(64bit)

The packagers have an issue tracker. You could (and probably should!) ask there as well, maybe the deps of the RPM can be improved...:
https://redmine.postgresql.org/projects/pgrpms/

Читать полностью…

PostgreSQL

Notabug, generally.

(Well, maybe pg_dump would have to deal with that sometimes).

Set search_path in your function to include public. pg_dump explicitly resets it to nothing.

Читать полностью…

PostgreSQL

Getting error no match for argument: libmemcached

Читать полностью…

PostgreSQL

install the dependenies needed for your pgpool version

Читать полностью…

PostgreSQL

While installing pgpool getting error

Читать полностью…

PostgreSQL

Hm. Am i hitting a bug?

While restoring my database schema, i have CREATE EXTENSION ltree in both my schema and public, however it fails when a SQL function with ltree in it is defined.

Читать полностью…
Subscribe to a channel