GS_SPM_SQL_PARAM
GS_SPM_SQL_PARAM是用于查看当前用户SQL参数信息的视图,普通用户以上权限均可以访问该视图。
名称 |
类型 |
描述 |
---|---|---|
sql_namespace |
oid |
Schema的OID。 |
sql_hash |
bigint |
当前Schema中SQL的唯一标识。 |
sql_text |
text |
SQL的文本串。 |
position |
integer |
参数在SQL中的位置索引,从0开始。 |
datatype |
integer |
参数类型的OID。 |
datatype_string |
text |
参数类型的字符串形式。 |
value_string |
text |
参数值的字符串形式。 |
is_null |
boolean |
参数值是否是NULL。 |
hash_value |
bigint |
参数值的哈希值 。 |
creation_time |
timestamp with time zone |
本记录的创建时间。 |