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

推荐订阅源

爱范儿
爱范儿
博客园_首页
W
WeLiveSecurity
S
Secure Thoughts
S
Security @ Cisco Blogs
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Hugging Face - Blog
Hugging Face - Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
H
Hacker News: Front Page
Project Zero
Project Zero
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
U
Unit 42
N
News and Events Feed by Topic
N
News and Events Feed by Topic
Hacker News - Newest:
Hacker News - Newest: "LLM"
Forbes - Security
Forbes - Security
T
Tor Project blog
I
Intezer
B
Blog
F
Full Disclosure
Security Archives - TechRepublic
Security Archives - TechRepublic
F
Fortinet All Blogs
Schneier on Security
Schneier on Security
T
Threat Research - Cisco Blogs
AI
AI
Google DeepMind News
Google DeepMind News
L
LINUX DO - 最新话题
Cloudbric
Cloudbric
L
Lohrmann on Cybersecurity
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
P
Privacy International News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
PCI Perspectives
PCI Perspectives
Y
Y Combinator Blog
Spread Privacy
Spread Privacy
Simon Willison's Weblog
Simon Willison's Weblog
罗磊的独立博客
Vercel News
Vercel News
A
Arctic Wolf
The Register - Security
The Register - Security
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
H
Heimdal Security Blog
Know Your Adversary
Know Your Adversary
P
Proofpoint News Feed
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed

博客园 - 塞外风

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文件。