Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle privileges users

SELECT USERNAME,
       LOCK_DATE,
       EXPIRY_DATE
FROM DBA_USERS
WHERE USERNAME IN (SELECT GRANTEE
                   FROM DBA_SYS_PRIVS
                   WHERE PRIVILEGE = 'UNLIMITED TABLESPACE')
ORDER BY USERNAME;
Comment

Oracle privileges

DELETE data from a specific table.
	INSERT data into a specific table.
	CREATE a foreign key reference to the named table or to a subset of columns from a table.
	SELECT data from a table, view, or a subset of columns in a table.
	CREATE a trigger on a table.
	UPDATE data in a table or in a subset of columns in a table.
	RUN a specified function or procedure.
	USE a sequence generator or a user-defined type.
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle sql date winter time 
Sql :: sql commands in android 
Sql :: nosqlbooster query other collection 
Sql :: hallo 
Sql :: mysql and or 
Sql :: First Step in installing SQL workbench 
Sql :: SQL Query Records Using Dates 
Sql :: postgresql interview questions 
Sql :: sql int +1 
Sql :: deduplicate delimited string bigquery 
Sql :: oracle execute immediate quotes 
Sql :: Windows internal database connection 
Sql :: ms sql bacup table 
Sql :: value of sold product using having and group by in sql 
Sql :: how to innjert in other database 
Sql :: error-expression-select-list-not-group-by-nonaggregated-column/ 
Sql :: dumping sql table 
Sql :: sql delete all except 
Sql :: mysql where in maintain order 
Sql :: time mysql w3 
Sql :: VHDL Example Code of Record Type 
Sql :: python sql passer des parametres dans une requet pymysql 
Sql :: for row in sql database python loop 
Sql :: sql null functions 
Sql :: opensuse status MySQL 
Sql :: database traccar 
Sql :: mysql insert into select with recursive 
Sql :: sqlite display data in separated columns 
Sql :: redudancy in SQL 
Sql :: como hacer una consulta de un registro que no esta en una tabla en mysql 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =