Dear All, I want to find out each row size of a table in PostgreSQL? I got pg_column_size() function. Could you please someone help me? Will this function return size in KB or MB?
Thanks & Best Wishes, Ashok
--------------------------------------------------------------------------------------------------------------------- Ashokkumar Mani (OCP12c/11g/10g/9i, AWS SAA, M103) Dubai , UAE | BLR , INDIA M: +971 54 723 0075 | +91 90086 70302 | WApp : +91 81975 99922 W: https://dbatocloudsolution.blogspot.in/
| E: [hidden email] |
pg_column_size returns the number of bytes with no formatting at all. Do something like select pg_size_pretty(pg_column_size(my_column) / 1024) would give you the value in Kbytes, further calculation in the same manner could convert this into Mbytes, Gbytes, or whatever you need.
— Jay
Sent from my iPad On Feb 19, 2021, at 7:28 AM, dbatoCloud Solution <[hidden email]> wrote:
|
In reply to this post by dbatoCloud Solution
On Fri, 2021-02-19 at 17:58 +0530, dbatoCloud Solution wrote:
> I want to find out each row size of a table in PostgreSQL? > I got pg_column_size() function. Could you please someone help me? Will this function return size in KB or MB? If your table rows are several KB in size, you may have a problem. pg_column_size() measures the size in bytes. In my experience the best measure is to create a table, fill it with some 10000 rows and divide the table size by the row count. There is substantial overhead for each row, and there will be overhead and fragmentation on the block level too. Yours, Laurenz Albe -- Cybertec | https://www.cybertec-postgresql.com |
Estimados Compañeros estoy trabajando con Postgres v12.x, he escrito un procedimiento Almacenado que me devuelva el resultado en JSON Y me entrega el siguiente error, favor me podran orientar de como hacerlos??... Muchas Gracias.. Este es el procedimiento: Dear Colleagues I am working with Postgres v12.x, I have written a Stored procedure that returns the result in JSON And it gives me the following error, could you please guide me on how to do them? ... Thank you very much .. This is the procedure: CREATE OR REPLACE FUNCTION public.sp_ccmm_json_9( param integer, periodo integer ) RETURNS json LANGUAGE plpgsql AS $function$ begin declare ret JSON; SELECT to_json(salida.*) AS to_json FROM ( SELECT to_char(t2.fecha_analista::timestamp with time zone, 'Month'::text) AS mes, count(t2.fecha_analista) AS a, count(t2.fecha_exp) AS r FROM tb_analistas t1 JOIN tb_ingreso_siabc t2 ON t1.id_an = t2.analista WHERE t1.id_an = param::double precision AND date_part('year'::text, t2.fecha_analista) = periodo::double precision AND t2.tipo_ccmm = 1 GROUP BY (to_char(t2.fecha_analista::timestamp with time zone, 'Month'::text)) UNION SELECT to_char(t2.fecha_analista::timestamp with time zone, 'Month'::text) AS mes, count(t2.fecha_analista) AS a, count(t2.fecha_exp) AS r FROM tb_analistas t1 JOIN tb_ingreso_siabc t2 ON t1.id_an = t2.analista WHERE t1.id_an = param::double precision AND date_part('year'::text, t2.fecha_analista) = periodo::double precision AND t2.tipo_ccmm = 2 GROUP BY (to_char(t2.fecha_analista::timestamp with time zone, 'Month'::text)) UNION SELECT to_char(t2.fecha_analista::timestamp with time zone, 'Month'::text) AS mes, count(t2.fecha_analista) AS a, count(t2.fecha_exp) AS r FROM tb_analistas t1 JOIN tb_ingreso_siabc t2 ON t1.id_an = t2.analista WHERE t1.id_an = param::double precision AND date_part('year'::text, t2.fecha_analista) = periodo::double precision AND t2.tipo_ccmm = 3 GROUP BY (to_char(t2.fecha_analista::timestamp with time zone, 'Month'::text))) salida ORDER BY salida.mes, salida.a, salida.r; END; $function$ Este Error en NodeJS cuando intenta recuperar el set de registros... This Error in NodeJS when trying to retrieve the recordset ... ![]() Atentamente, Carlos Armijo Severino Ingeniero de Ejecución en Informática Celular : +56 9776 19 419
El vie, 19 de feb. de 2021 a la(s) 10:18, Laurenz Albe ([hidden email]) escribió: On Fri, 2021-02-19 at 17:58 +0530, dbatoCloud Solution wrote: ![]() |
Free forum by Nabble | Edit this page |