Oracle数据库常用操作
还是博客园靠谱
删除语句
delete from 表名 where 条件
drop table 表名
truncate table 表名
密码过期
- 用sysdba身份登陆
- select * from dba_profiles where profile='default' and resource_name='password_life_time';
- alter profile default limit password_life_time unlimited;
橘子Jane