码迷,mamicode.com
首页 > 数据库 > 详细

【ORACLE】数据库空闲1分钟自动断开

时间:2018-04-08 18:08:19      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:lse   cti   val   4.0   开启   auto   lin   profile   技术分享   

-- 开启参数,创建概要文件
SQL> show parameter resource_limit;

NAME                                     TYPE         VALUE
------------------------------------ ----------- ------------------------------
resource_limit                             boolean         FALSE
SQL>
SQL> alter system set resource_limit=true;

System altered.

SQL> show parameter resource_limit;

NAME                                     TYPE         VALUE
------------------------------------ ----------- ------------------------------
resource_limit                             boolean         TRUE


SQL> create profile test_profile limit idle_time 1;

Profile created.

SQL> alter user scott profile test_profile;

User altered.
-- 测试登陆

[oracle@rac01 ~]$ sqlplus scott/redhat

SQL*Plus: Release 11.2.0.4.0 Production on 星期二 3月 6 17:02:38 2018

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options

SQL> select * from dual;

D
-
X

SQL> /
select * from dual
*
ERROR at line 1:
ORA-02396: 超出最大空闲时间, 请重新连接

-- 删除测试概要文件
SQL> select username,profile from dba_users where profile=‘ TEST_PROFILE‘;

USERNAME                       PROFILE
------------------------------ ------------------------------
SCOTT                                 TEST_PROFILE

SQL> drop profile test_profile cascade;

Profile dropped.



技术分享图片

技术分享图片

技术分享图片

【ORACLE】数据库空闲1分钟自动断开

标签:lse   cti   val   4.0   开启   auto   lin   profile   技术分享   

原文地址:https://www.cnblogs.com/xphdbky/p/8746166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!