摘要:
1.取整(大) select ceil(-1.001) value from dual2.取整(小) select floor(-1.001) value from dual3.取整(截取) select trunc(-1.002) value from dual 4.取整(舍入) select r 阅读全文
摘要:
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; --查询密码状态select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_ 阅读全文
摘要:
第一种方法: 先查询一下当前用户下的所有空表 select table_name from user_tables where NUM_ROWS=0; 用以下这句查找空表 select 'alter table '||table_name||' allocate extent;' from user 阅读全文