
oracle
小鲁班-JAVA开发
java项目开发
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
解决PLSQL Developer报“动态执行表不可访问,本会话的自动统计被禁止
PLSQL连接oracle数据库登录时,老是报这个问题,感觉特烦,解决方法,在顶部的菜单中选择“工具”-->“首选项”-->“选项”-->“自动统计”。把“自动统计”前面默认的√去掉原创 2020-08-03 09:53:42 · 349 阅读 · 0 评论 -
mysql、oracle数据库查看表索引
mysql: show index from 表名称;oracle: select s.* from dba_indexes s where s.table_name='表名称';原创 2019-10-15 10:27:19 · 284 阅读 · 0 评论 -
oracle数据库查看表和表字段的语句
1.查看当前用户的表select * from user_tables tt where tt.TABLE_NAME=upper('表名称');2.查看表对应的字段select * from user_tab_columns t3 where t3.TABLE_NAME=upper('表名称');3.查看表注释select * from user_tab_comments...原创 2018-10-31 14:33:05 · 9084 阅读 · 0 评论