本月博客排行
-
第1名
wy_19921005 -
第2名
benladeng5225 -
第3名
duanfei - steven789654
- wddpwzzhao123
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- kaizi1992
- tanling8334
- vipbooks
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- e_e
- jh108020
- ganxueyun
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- flashsing123
- lyndon.lin
- bosschen
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
- 青否云后端云
- hudiemeng870329
- mft8899
最新文章列表
oracle给某个用户访问所有表的权限
工作总结:在oracle下给某个用户授予访问本用户下所有表的权限.
例如:把scott用户下的所有表的查询权限授予T用户.
create or replace procedure grant_selectAll_sql as
The_c1 Integer;
The_result number;
v ...
查询所有表,所有列
--当前用户select * from user_tables;
select * from USER_TAB_COLUMNS where table_name='CT_SENDMAILLISTCSV'
--所有用户select * from all_tables;
select * from all_TAB_COLUMNS where table_name='CT_SENDMAILLIS ...