1. Check how many sessions were existed:
SELECT count(*) as connections, username
FROM v$session
GROUP BY username
ORDER BY username;
2. Check SESSIONS_PER_USER for the user: (example username: THONY)
SELECT a.username, b.profile, b.resource_name, b.limit
FROM dba_users a , dba_profiles b
WHERE a.profile=b.profile AND b.resource_name='SESSIONS_PER_USER' AND a.username='THONY';
3. Alter SESSIONS_PER_USER value: (example profile: DEFAULT)
ALTER PROFILE default LIMIT SESSIONS_PER_USER 10;
本網誌主要是記錄筆者在使用電腦上疑難解決方法。希望藉著此平台跟大家分享交流。
This blog is used for sharing how to troubleshoot my computer problem. I would like to share them to each other through this platform.
訂閱:
文章 (Atom)
Review Who is Connected to Windows Shared Folder
1. Open Computer Management Console Windows Key + R -> compmgmt.msc 2. Expand System Tools -> Shared Folder -> Sessions ...
-
How to enable HP printer automatic duplex printing function in Windows 7 1) Go to Control Panel -> Devices and Printers -> Double...
-
Change Windows XP Connection Session Limit 破解Windows XP SP3連線數限制 如果你有安裝了Windwos XP SP3修補程式,可能會發現XP連線數限制重回10,如果你有增加連線數的需求,可以使用這個「 TCP/IP P...