惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Security @ Cisco Blogs
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
腾讯CDC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
F
Full Disclosure
博客园 - 【当耐特】
C
CERT Recently Published Vulnerability Notes
Engineering at Meta
Engineering at Meta
Application and Cybersecurity Blog
Application and Cybersecurity Blog
T
Threatpost
I
Intezer
V2EX - 技术
V2EX - 技术
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Hacker News
The Hacker News
小众软件
小众软件
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
N
News | PayPal Newsroom
MyScale Blog
MyScale Blog
AI
AI
Vercel News
Vercel News
Spread Privacy
Spread Privacy
美团技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
The GitHub Blog
The GitHub Blog
V
Vulnerabilities – Threatpost
Schneier on Security
Schneier on Security
Cyberwarzone
Cyberwarzone
G
GRAHAM CLULEY
Help Net Security
Help Net Security
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
L
LINUX DO - 热门话题
U
Unit 42
L
LangChain Blog
Recent Announcements
Recent Announcements

博客园 - 塞外风

ORA-01033: ORACLE initialization or shutdown in progress 实用的处理方法 转载“启动\关闭Oracle数据库的多种方法”--来自百度#Oracle - 塞外风 - 博客园 Oracle查询用户权限角色(dba_sys_privs) (转) Oracle各版本之间Dmp文件的导入导出问题 Oracle11G 的dbconsole无法启动的解决办法 Microsoft SharePoint Server 2010 产品配置向导注册失败的解决方法 MS SQLServer数据库日志文件丢失的还原方法 千年虫至今还没有消失 Macfee 杀毒软件“签名文件存在8到29天”问题的解决办法! 推荐的firefox扩展 软件推荐-雷鸟 一张图片 美元贬值情景下对人民币升值的看法 Linux下添加HP5500打印机 泰山日出 努力!成功就在眼前! 还是现实点 回来了! 又是一年!
Oracle创建一个用户并赋予其他用户表的访问权限
塞外风 · 2012-05-03 · via 博客园 - 塞外风

Oracle创建一个用户并赋予其他用户表的访问权限的方法

--第一步:创建用户
create user username identified by password;
--第二步:给用户赋值接触锁定(仅仅赋予会话权限)
grant create session to ytqs;
--第三步(登录所要访问表的用户(ytcj),执行如下语句,并把结果保存为sql文件):
select 'GRANT SELECT ON '||table_name||' to username;'  from user_tables;
--第三步:用dba登录并执行上一步形成的sql文件。