Created
July 19, 2011 01:13
-
-
Save bulain/1091089 to your computer and use it in GitHub Desktop.
extends connecions in oracle 10g
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1, using system login | |
sqlplus system/password@xe | |
2, change system session configuration. | |
alter system set session_cached_cursors=200 scope=spfile; | |
alter system set session_max_open_files=200 scope=spfile; | |
alter system set sessions=20 scope=spfile; | |
alter system set license_max_sessions=200 scope=spfile; | |
alter system set license_sessions_warning=200 scope=spfile; | |
alter system set processes=200 scope=spfile; | |
3, restart oracle instance. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment