Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle exceeded simultaneous sessions_per_user limit

-- Current sessions:
SELECT USERNAME, count(*) as connections FROM v$session GROUP BY USERNAME;
-- Limitations:
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';
-- Change limitation:
ALTER PROFILE my_profile LIMIT SESSIONS_PER_USER 10;
Comment

PREVIOUS NEXT
Code Example
Sql :: tsql cmd exec script from file 
Sql :: search db for table name 
Sql :: SQL SERVER SELECT BETWEEN DATETIME 
Sql :: migrate sql table another database 
Sql :: add foreign key constraint in postgresql 
Sql :: sql get count without group by 
Sql :: how to pass password mysql command line 
Sql :: create in sql 
Sql :: alphabetical order mysql 
Sql :: show column from sql server 
Sql :: xml path sql server 
Sql :: how select a json value in mysql 
Sql :: blob datatype in mysql 
Sql :: list all columns in a table sql 
Sql :: postgresql left join distinct on 
Sql :: get top 10 records in oracle 
Sql :: sql calculate percentage 
Sql :: sql create table statement 
Sql :: where date = max(date) in sql 
Sql :: column get from sql table 
Sql :: oracle replace 
Sql :: mysql get year from date 
Sql :: mysql add text to existing field 
Sql :: copy table in mysql with data 
Sql :: Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot contain duplicates. 
Sql :: inner join sql oracle 
Sql :: enable sql server full text indexing 
Sql :: sql create schema 
Sql :: syntaxerror unexpected identifier mysql 
Sql :: mysql regexp_replace remove html tag 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =