Greenplum Process Session Management Chapter

Source: Internet
Author: User
--1. Querying the active session under the specified library, the Procpid field represents the session proc  select * from pg_stat_activity where datname = ' dbname ';    --2. Interrupt query, ${procpid} indicates that the above query corresponds to the procpid, the same as  select Pg_cancel_backend (${procpid});     --3. Interrupt session Connection  Select Pg_terminate_backend (${procpid});     --4. If you need to terminate or disconnect a connection session in bulk, you can write a function or simply piece it together and perform it manually, such as:  select ' Select Pg_terminate_backend (' | | procpid| | '); ', * from pg_stat_activity where datname = ' dbname ';    Select ' Select Pg_cancel_backend (' | | procpid| | '); ', * from pg_stat_activity where datname = ' dbname ';  

  

Greenplum Process Session Management Chapter

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.