Search
 
SCRIPT & CODE EXAMPLE
 

SQL

ora-02391

-- 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 :: uppercase and lowercase in sql 
Sql :: how to check if the view exists in sql server 
Sql :: join to find results not in another table 
Sql :: hotw to alter lengh character vayng postgres 
Sql :: mysqli_connect using prepare statement 
Sql :: sql create table if not exists 
Sql :: how to create table in sql 
Sql :: id increment ms sql server 
Sql :: oracle undo usage by session 
Sql :: brew start postgres manual 
Sql :: postgres list all stored procedures query 
Sql :: show data in table postgres 
Sql :: sql create index 
Sql :: vacuum table postgres 
Sql :: allsource oracle 
Sql :: sql delete caracter list 
Sql :: insert data in pgsql 
Sql :: change postgress password 
Sql :: sql where max date 
Sql :: get name of day in sql 
Sql :: select and condition in sql 
Sql :: grant all privileges on a db 
Sql :: pluck in query builder 
Sql :: sql how to duplicate a table 
Sql :: mysql database create 
Sql :: postgres list all triggers 
Sql :: How do I add a user to a postgres database? cli 
Sql :: ms sql create user 
Sql :: how to export only procedures mysql 
Sql :: update query with between in mysql 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =