<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=Oracle_PL%2FSQL%2FUser_Previliege%2FSystem_Privileges</id>
		<title>Oracle PL/SQL/User Previliege/System Privileges - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=Oracle_PL%2FSQL%2FUser_Previliege%2FSystem_Privileges"/>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL/User_Previliege/System_Privileges&amp;action=history"/>
		<updated>2026-04-07T04:49:28Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL/User_Previliege/System_Privileges&amp;diff=1112&amp;oldid=prev</id>
		<title> в 13:45, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL/User_Previliege/System_Privileges&amp;diff=1112&amp;oldid=prev"/>
				<updated>2010-05-26T13:45:19Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 13:45, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL/User_Previliege/System_Privileges&amp;diff=1113&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL/User_Previliege/System_Privileges&amp;diff=1113&amp;oldid=prev"/>
				<updated>2010-05-26T09:55:05Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Common System Privileges==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
Privilege                  Description&lt;br /&gt;
CREATE SESSION             Enables a user to connect to the database instance. &lt;br /&gt;
&lt;br /&gt;
CREATE TABLE               Enables a user to create a table in his or her schema.&lt;br /&gt;
CREATE VIEW                Enables a user to create a view in his or her schema.&lt;br /&gt;
CREATE SYNONYM             Enables a user to create a private synonym in his or her schema.&lt;br /&gt;
CREATE PUBLIC SYNONYM      Enables a user to create a synonym in the SYS schema that can be used by &lt;br /&gt;
                           any user in the database.&lt;br /&gt;
CREATE PROCEDURE           Enables a user to create a stored procedure or function is his or her &lt;br /&gt;
                           schema.&lt;br /&gt;
CREATE SEQUENCE            Enables a user to create a sequence in his or her schema.&lt;br /&gt;
CREATE TRIGGER             Enables a user to create a trigger in his or her schema on a table in his &lt;br /&gt;
                           or her schema.&lt;br /&gt;
CREATE USER                Enables a user to create another user in the database and specify the &lt;br /&gt;
                           password and other settings at creation time.&lt;br /&gt;
ALTER USER                 Enables a user to modify the user information of another user in the &lt;br /&gt;
                           database, including changing the user&amp;quot;s password.&lt;br /&gt;
DROP ANY TABLE             Enables a user to drop any table in any schema in the database.&lt;br /&gt;
ALTER ANY TABLE            Enables a user to alter any table in any schema in the database.&lt;br /&gt;
BACKUP ANY TABLE           Enables a user to make a copy of any table in the database using the &lt;br /&gt;
                           Export utility (exp).&lt;br /&gt;
SELECT ANY TABLE           Enables a user to issue a SELECT statement against any table &lt;br /&gt;
                           in the database.&lt;br /&gt;
INSERT ANY TABLE           Enables a user to issue an INSERT statement against any table in &lt;br /&gt;
                           the database.&lt;br /&gt;
UPDATE ANY TABLE           Enables a user to issue an UPDATE statement against any table in the &lt;br /&gt;
                           database.&lt;br /&gt;
DELETE ANY TABLE           Enables a user to issue a DELETE statement against any table in the &lt;br /&gt;
                           database.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Grant create related permission==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
GRANT create session&lt;br /&gt;
     , create table&lt;br /&gt;
     , create procedure&lt;br /&gt;
     , create view&lt;br /&gt;
     , create synonym&lt;br /&gt;
     , create public synonym&lt;br /&gt;
     , drop public synonym&lt;br /&gt;
     , alter session&lt;br /&gt;
TO ppl;&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Grant permissions and then check the dba_col_privs table==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
grant references ( employee_id ),update( first_name,last_name,job_id,manager_id,department_id )&lt;br /&gt;
on hr.employees to scott;&lt;br /&gt;
select *&lt;br /&gt;
from dba_col_privs&lt;br /&gt;
/&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>