2016年9月28日
摘要: set ORACLE_HOME=F:\app\rh\product\11.2.0\dbhome_1 阅读全文
posted @ 2016-09-28 17:37 海子呢 阅读(2691) 评论(0) 推荐(0)
摘要: 源地址:http://www.cnblogs.com/wolfplan/p/3876164.html select * from v$version; 阅读全文
posted @ 2016-09-28 16:37 海子呢 阅读(151) 评论(0) 推荐(0)
摘要: 源地址:http://blog.sina.com.cn/s/blog_5f20c4740100dodl.html SID就是数据库的实例 select instance_name from V$instance; 阅读全文
posted @ 2016-09-28 16:24 海子呢 阅读(436) 评论(0) 推荐(0)
摘要: 源地址:http://www.07net01.com/2015/07/884873.html 阅读全文
posted @ 2016-09-28 15:56 海子呢 阅读(223) 评论(0) 推荐(0)
摘要: 源地址:http://blog.csdn.net/zhanggnol/article/details/6683697 select t.table_name,t.num_rows from user_tables t ORDER BY NUM_ROWS DESC; 还可以直接查看dblink的:se 阅读全文
posted @ 2016-09-28 10:48 海子呢 阅读(39396) 评论(0) 推荐(0)
摘要: select object_name,created from user_objects where object_type='INDEX' ORDER BY CREATED DESC; 阅读全文
posted @ 2016-09-28 10:04 海子呢 阅读(5304) 评论(0) 推荐(0)
摘要: alter index indexname rename to new_indexname; 阅读全文
posted @ 2016-09-28 09:27 海子呢 阅读(577) 评论(0) 推荐(0)