Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle 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 :: oracle index partition 
Sql :: oracle sysdate - 1 month 
Sql :: get last week data in mysql 
Sql :: how to change mysql root password in windows 10 
Sql :: sql select between two dates 
Sql :: docker mysql random root password 
Sql :: SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint 
Sql :: epoch time converter in snowflake 
Sql :: oracle undo usage 
Sql :: job for postgresql.service failed because the control process exited with error code. see "systemctl status postgresql.service" and "journalctl -xe" for details. 
Sql :: sql get month name 
Sql :: show procedures mysql 
Sql :: select from describe sql 
Sql :: sql create a new table 
Sql :: select all_source oracle 
Sql :: check mysql username and password ubuntu 
Sql :: mysqldump: Got error: 1045: Access denied for user 
Sql :: SQL rounding numbers 
Sql :: django mssql backend 
Sql :: insert query return id mysql 
Sql :: how to select first row of database sql 
Sql :: sql duplicate rows 
Sql :: start mysql 
Sql :: mac install mysql 
Sql :: psql get table data types 
Sql :: mysql show table fields 
Sql :: get date from timestamp oracle 
Sql :: oracle list columns in schema 
Sql :: alter table id autoincrement 
Sql :: check duplicate values plsql 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =