DEFINITIONS
Definitions More Info.
Definition ID
4.056
Title
POSTGRESQL
Category
NOTES
Definition
Find objects linked to a PostgreSQL role - bir role bagli objeleri bulma
Definition Description
https://dba.stackexchange.com/questions/155332/find-objects-linked-to-a-postgresql-role
SELECT oid::regprocedure AS function
, pg_get_userbyid(proowner) AS owner
FROM pg_proc
WHERE oid = 'text(boolean)'::regprocedure;
RecordBy
cunay
Record Date
09-01-2021 16:17:37
Düzenle
Kopyala
Sil