数据库
notedd
这个作者很懒,什么都没留下…
展开
-
在存储过程中使用truncate
如何在存储过程中使用truncate,例子如下: n_Sql := truncate table test ; execute immediate n_Sql ; 需要注意是truncate是ddl操作,隐式自动提交事务,所以如果该代码是在事务中一定要慎用。原创 2008-06-17 16:17:00 · 6287 阅读 · 1 评论 -
Oracle维护常用SQL语句
1、查看表空间的名称及大小 select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size from dba_tablespaces t, dba_data_files d where t.tablespace_name = d.tablespace_name group by t.tablespace_name;转载 2008-07-02 15:17:00 · 283 阅读 · 0 评论