All thing of the world!

Postgresql pg_is_other_temp_schema 설명 : 포스트그레스큐엘 함수 본문

IT/Postgresql DBMS

Postgresql pg_is_other_temp_schema 설명 : 포스트그레스큐엘 함수

WorldSeeker 2021. 5. 4. 10:46

1. 함수의 목적

   

    Postgresql pg_is_other_temp_schema 함수는 pg 시스템 핸들링 함수로서, 인수로 지정한 OID가 다른 세션에서 사용하는 템프 스키마(temp scheme)이라면 true를 반환하고, 아니라면 false를 반환하다.

 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT pg_is_other_temp_schema(0) ;  <-- 0은 현재 접속하는 나의 세션 OID

 

    pg_is_other_temp_schema

    ------------

    false

 

 

3. 사용방법

 

        

4. 함수 PARAMETER 설명

 

 

5. 다양한 샘플 표현

 

 

 

 Posgresql 내장함수 모음 : atotw.tistory.com/category/IT/Postgresql%20DBMS



 

 

Comments