postgre.rst
changeset 1684 88f1d11d2adf
parent 1683 d99b4a277679
child 1700 f987c277f760
equal deleted inserted replaced
1683:d99b4a277679 1684:88f1d11d2adf
    25 ..
    25 ..
    26 
    26 
    27   https://wiki.debian.org/PostgreSql
    27   https://wiki.debian.org/PostgreSql
    28     Debian wiki instructions.
    28     Debian wiki instructions.
    29 
    29 
       
    30 List all schemas and tables.
       
    31 ============================
       
    32 
       
    33 Schemas::
       
    34 
       
    35   => select schema_name from information_schema.schemata;
       
    36   => select nspname from pg_catalog.pg_namespace;
       
    37   => \dn *
       
    38