PostgreSQL Oracle 兼容性 之 USERENV

本文涉及的产品
云原生数据库 PolarDB 分布式版,标准版 2核8GB
云数据库 RDS SQL Server,基础系列 2核4GB
RDS PostgreSQL Serverless,0.5-4RCU 50GB 3个月
推荐场景:
对影评进行热评分析
简介:

标签

PostgreSQL , Oracle , USERENV , 会话环境变量


背景

USERENV 是Oracle 用来获取当前会话变量的函数。官方是这么介绍的:

https://docs.oracle.com/cd/E11882_01/server.112/e41084/functions184.htm#SQLRF06117

Describes the current session. The predefined parameters of namespace USERENV are listed in Table 5-11.

一些常见的例子:

SELECT USERENV('CLIENT_INFO') FROM dual;    
  
SELECT USERENV('ENTRYID') FROM dual;    
  
SELECT USERENV('ISDBA') FROM dual;    -- 查看当前用户是否是DBA如果是则返回true    
  
SELECT USERENV('LANG') FROM dual;    
  
SELECT USERENV('LANGUAGE') FROM dual;    
  
SELECT USERENV('SESSIONID') FROM dual;  -- 会话标志:sessionId    
  
SELECT USERENV('TERMINAL') FROM dual;    
Parameter Return Value
ACTION Identifies the position in the module (application name) and is set through the DBMS_APPLICATION_INFO package or OCI.
CLIENT_INFO Returns up to 64 bytes of user session information that can be stored by an application using the DBMS_APPLICATION_INFO package.
ENTRYID The current audit entry number. The audit entryid sequence is shared between fine-grained audit records and regular audit records. You cannot use this attribute in distributed SQL statements. The correct auditing entry identifier can be seen only through an audit handler for standard or fine-grained audit.
ISDBA Returns TRUE if the user has been authenticated as having DBA privileges either through the operating system or through a password file.
LANG The abbreviated name for the language, a shorter form than the existing 'LANGUAGE' parameter.
LANGUAGE The language and territory currently used by your session, along with the database character set, in this form: language_territory.characterset
SESSIONID The auditing session identifier. You cannot use this attribute in distributed SQL statements.
TERMINAL The operating system identifier for the client of the current session. In distributed SQL statements, this attribute returns the identifier for your local session. In a distributed environment, this is supported only for remote SELECT statements, not for remote INSERT, UPDATE, or DELETE operations. (The return length of this parameter may vary by operating system.)

PostgreSQL中如何实现类似的功能呢?

1、写个壳子,支持输出任意类型。(因为前面提到的变量,返回的类型可能是时间、字符串、数字等。)

create or replace function userenv(anynonarray) returns anynonarray as $$  
declare  
begin  
  case lower($1)  
  when 'sessionid' then  
    return get_session_id();  
  when 'isdba' then  
    return get_isdba();  
  when 'action' then  
    return get_action();  
  else   
    return null;  
  end case;  
end;  
$$ language plpgsql strict;  

然后需要写实际的函数,例如

1、USERENV('SESSIONID'):

create sequence public.pg_session_id_sequence_oracle_comp;  
grant all on sequence public.pg_session_id_sequence_oracle_comp to public;  
  
create OR replace function get_session_id() returns int8 AS $$   
declare res int8;   
begin  
SELECT currval('public.pg_session_id_sequence_oracle_comp') into res;   
return res;   
exception    
    WHEN sqlstate '55000' THEN    
SELECT nextval('public.pg_session_id_sequence_oracle_comp') into res;   
return res;    
    WHEN sqlstate '42P01' THEN    
create sequence public.pg_session_id_sequence_oracle_comp;  
SELECT nextval('public.pg_session_id_sequence_oracle_comp') into res;   
return res;   
end;   
$$ language plpgsql strict SET client_min_messages to error;    

2、USERENV('ISDBA')

create OR replace function get_isdba() returns boolean AS $$   
  select rolsuper from pg_roles where rolname=current_user;  
$$ language sql strict SET client_min_messages to error;    

3、USERENV('ACTION')

create OR replace function get_ACTION() returns text AS $$   
  select application_name from pg_stat_activity where pid=pg_backend_pid();  
$$ language sql strict SET client_min_messages to error;    

使用例子:

test=> select userenv('isdba'::Text);  
 userenv   
---------  
 false  
(1 row)  
  
test=> select userenv('action'::Text);  
 userenv   
---------  
 psql  
(1 row)  
  
test=> select userenv('sessionid'::Text);  
 userenv   
---------  
 1  
(1 row)  
  
test=> select userenv('hello'::Text);  
 userenv   
---------  
   
(1 row)  

其他的ENV变量请自行增加,PG的各种获取渠道,动态视图、管理函数等如下。

https://www.postgresql.org/docs/10/static/functions-info.html

https://www.postgresql.org/docs/9.6/static/monitoring-stats.html#MONITORING-STATS-VIEWS

https://www.postgresql.org/docs/9.6/static/multibyte.html

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍如何基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
目录
相关文章
|
5月前
|
Oracle 关系型数据库 数据库
【赵渝强老师】在PostgreSQL中访问Oracle
本文介绍了如何在PostgreSQL中使用oracle_fdw扩展访问Oracle数据库数据。首先需从Oracle官网下载三个Instance Client安装包并解压,设置Oracle环境变量。接着从GitHub下载oracle_fdw扩展,配置pg_config环境变量后编译安装。之后启动PostgreSQL服务器,在数据库中创建oracle_fdw扩展及外部数据库服务,建立用户映射。最后通过创建外部表实现对Oracle数据的访问。文末附有具体操作步骤与示例代码。
185 6
【赵渝强老师】在PostgreSQL中访问Oracle
|
7月前
|
SQL Oracle 关系型数据库
|
9月前
|
SQL 存储 Oracle
【YashanDB观点】论Oracle兼容性,我们需要做什么
我们经常发现,部分国产数据库声称与 Oracle兼容性高达90%,但在实际迁移过程中,仍需要频繁地修改业务应用的代码。为何实现与Oracle高兼容度的数据库产品如此困难?其中一个重要原因是Oracle兼容性不仅是模仿,而是一个非常复杂和工程量庞大的逆向工程。其技术实现的复杂性以及多如牛毛的细节,足以让多数“年轻”的数据库团队望洋兴叹。YashanDB作为一款从核心理论到关键系统均为原创的数据库产品,从构建初期就具备了技术优势,在Oracle兼容性实现上,敢于亮剑并充分发挥工匠精神,不断打磨,努力构筑一个真正形神兼备的数据库产品。以下将从YashanDB SQL引擎技术、Oracle兼容性的开发
|
9月前
|
SQL 存储 Oracle
【YashanDB观点】论Oracle兼容性,我们需要做什么
Oracle兼容性是目前国产数据库的关键任务之一,其直接影响到商业迁移的成本和竞争力。
162 8
|
Oracle NoSQL 关系型数据库
主流数据库对比:MySQL、PostgreSQL、Oracle和Redis的优缺点分析
主流数据库对比:MySQL、PostgreSQL、Oracle和Redis的优缺点分析
2280 3
|
人工智能 Oracle 关系型数据库
一篇文章弄懂Oracle和PostgreSQL的Database Link
一篇文章弄懂Oracle和PostgreSQL的Database Link
|
SQL Oracle 关系型数据库
常用数据库的分页语句(mySQL、oracle、PostgreSQL、SQL Server)
常用数据库的分页语句(mySQL、oracle、PostgreSQL、SQL Server)
|
存储 Oracle 关系型数据库
PolarDB 开源版通过orafce支持Oracle兼容性
背景PolarDB 的云原生存算分离架构, 具备低廉的数据存储、高效扩展弹性、高速多机并行计算能力、高速数据搜索和处理; PolarDB与计算算法结合, 将实现双剑合璧, 推动业务数据的价值产出, 将数据变成生产力.本文将介绍PolarDB开源版通过orafce支持Oracle兼容性 .测试环境为m...
288 0
|
4月前
|
存储 关系型数据库 测试技术
拯救海量数据:PostgreSQL分区表性能优化实战手册(附压测对比)
本文深入解析PostgreSQL分区表的核心原理与优化策略,涵盖性能痛点、实战案例及压测对比。首先阐述分区表作为继承表+路由规则的逻辑封装,分析分区裁剪失效、全局索引膨胀和VACUUM堆积三大性能杀手,并通过电商订单表崩溃事件说明旧分区维护的重要性。接着提出四维设计法优化分区策略,包括时间范围分区黄金法则与自动化维护体系。同时对比局部索引与全局索引性能,展示后者在特定场景下的优势。进一步探讨并行查询优化、冷热数据分层存储及故障复盘,解决分区锁竞争问题。
521 2
|
关系型数据库 分布式数据库 PolarDB
《阿里云产品手册2022-2023 版》——PolarDB for PostgreSQL
《阿里云产品手册2022-2023 版》——PolarDB for PostgreSQL
531 0

相关产品

  • 云原生数据库 PolarDB
  • 云数据库 RDS PostgreSQL 版
  • 推荐镜像

    更多