zoukankan      html  css  js  c++  java
  • 【PostgreSQL-9.6.3】如何得到psql中命令的实际执行SQL

    当我们在psql界面执行以“”开头的命令时,数据库会立刻返回执行结果,而不会返回命令的实际执行过程。通过两种方式可以实现执行过程的查看:

    方法一:启动psql命令时加“-E”参数

    postgres@lgr-pc:~$ psql -E test
    psql (9.6.3)
    Type "help" for help.
    
    test=# d
    ********* QUERY **********
    SELECT n.nspname as "Schema",
      c.relname as "Name",
      CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'm' THEN 'materialized view' WHEN 'i' THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' WHEN 'f' THEN 'foreign table' END as "Type",
      pg_catalog.pg_get_userbyid(c.relowner) as "Owner"
    FROM pg_catalog.pg_class c
         LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
    WHERE c.relkind IN ('r','v','m','S','f','')
          AND n.nspname <> 'pg_catalog'
          AND n.nspname <> 'information_schema'
          AND n.nspname !~ '^pg_toast'
      AND pg_catalog.pg_table_is_visible(c.oid)
    ORDER BY 1,2;
    **************************
    
              List of relations
     Schema |   Name   | Type  |  Owner   
    --------+----------+-------+----------
     public | people   | table | postgres
     public | persons  | table | postgres
     public | students | table | postgres
     public | t1       | table | postgres
     public | t11      | table | postgres
     public | t2       | table | postgres
     public | tmp12    | table | postgres
     public | tmp15    | table | postgres

    这种方式只能在启动psql时使用,如果想关闭查询功能只能重新启动psql。

    方法二:在psql中执行“set ECHO_HIDDEN on|off”命令。on为开启,off为关闭,“ECHO_HIDDEN”必须为大写。

    test=# set ECHO_HIDDEN on
    test=# d
    ********* QUERY **********
    SELECT n.nspname as "Schema",
      c.relname as "Name",
      CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'm' THEN 'materialized view' WHEN 'i' THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' WHEN 'f' THEN 'foreign table' END as "Type",
      pg_catalog.pg_get_userbyid(c.relowner) as "Owner"
    FROM pg_catalog.pg_class c
         LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
    WHERE c.relkind IN ('r','v','m','S','f','')
          AND n.nspname <> 'pg_catalog'
          AND n.nspname <> 'information_schema'
          AND n.nspname !~ '^pg_toast'
      AND pg_catalog.pg_table_is_visible(c.oid)
    ORDER BY 1,2;
    **************************
    
              List of relations
     Schema |   Name   | Type  |  Owner   
    --------+----------+-------+----------
     public | people   | table | postgres
     public | persons  | table | postgres
     public | students | table | postgres
     public | t1       | table | postgres
     public | t11      | table | postgres
     public | t2       | table | postgres
     public | tmp12    | table | postgres
     public | tmp15    | table | postgres
    (8 rows)
    
    test=# set ECHO_HIDDEN off
    test=# d
              List of relations
     Schema |   Name   | Type  |  Owner   
    --------+----------+-------+----------
     public | people   | table | postgres
     public | persons  | table | postgres
     public | students | table | postgres
     public | t1       | table | postgres
     public | t11      | table | postgres
     public | t2       | table | postgres
     public | tmp12    | table | postgres
     public | tmp15    | table | postgres
    (8 rows)



  • 相关阅读:
    Retrofit/Okhttp API接口加固技术实践(上)
    浅析C#中的结构体和类
    iOS中 支付宝钱包具体解释/第三方支付 韩俊强的博客
    Java并发之volatile二
    dynamic initializer和全局变量
    二叉树转换成森林&amp;森林变成二叉树
    这才是真正的裸眼3D!超级震撼!!
    每一个开发人员都应该有一款自己的App
    Hibernate HQL的使用
    我的Android进阶之旅------&gt;Android 关于arm64-v8a、armeabi-v7a、armeabi、x86下的so文件兼容问题
  • 原文地址:https://www.cnblogs.com/NextAction/p/7366604.html
Copyright © 2011-2022 走看看