Difference between revisions of "List schemas: \dn"

From wikieduonline
Jump to navigation Jump to search
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  
 
+
Default [[Schema]]s in Ubuntu
 
  \dn
 
  \dn
 
   List of schemas
 
   List of schemas
Line 7: Line 7:
 
  [[public]] | [[postgres]]
 
  [[public]] | [[postgres]]
 
  (1 row)
 
  (1 row)
 +
 +
 +
select nspname as schema, usename as owner from pg_namespace, pg_user where pg_namespace.nspowner = pg_user.usesysid and pg_user.usename ='YOUR_USERNAME';
 +
 +
 +
 +
 +
\dn+
 +
                          List of schemas
 +
  Name  |  Owner  |  Access privileges  |      Description
 +
--------+----------+----------------------+------------------------
 +
  public | postgres | postgres=UC/postgres+| standard public schema
 +
        |          | =UC/postgres        |
 +
(1 row)
 +
  
 
  \dn
 
  \dn
Line 20: Line 35:
 
  (6 rows)
 
  (6 rows)
  
 +
== Related ==
 +
* <code>[[SELECT version();]]</code>
 +
* <code>[[CREATE SCHEMA]]</code>
 +
* <code>[[GRANT]]</code>, <code>[[GRANT ALL]]</code>, <code>[[GRANT USAGE]]</code>
  
 
== See also ==
 
== See also ==
 +
* {{Schema}}
 
* {{psql}}
 
* {{psql}}
  
 
[[Category: PostgreSQL]]
 
[[Category: PostgreSQL]]
 
[[Category: SQL]]
 
[[Category: SQL]]

Revision as of 11:05, 16 December 2022

Default Schemas in Ubuntu

\dn
 List of schemas
 Name  |  Owner
--------+----------
public | postgres
(1 row)


select nspname as schema, usename as owner from pg_namespace, pg_user where pg_namespace.nspowner = pg_user.usesysid and pg_user.usename ='YOUR_USERNAME';



\dn+
                          List of schemas
  Name  |  Owner   |  Access privileges   |      Description
--------+----------+----------------------+------------------------
 public | postgres | postgres=UC/postgres+| standard public schema
        |          | =UC/postgres         |
(1 row)


\dn
         List of schemas
    Name     |       Owner
-------------+-------------------
 your_schema1   | your_username
 your_schema1      | your_username
 your_schema1       | your_username2
 your_schema1 | rds_master
 public      | rds_master
 raw         | rds_master
(6 rows)

Related

See also

Advertising: