摘要:
非常推荐该博客http://www.regexlab.com/zh/regref.htm希望此博客让你了解正则表达式 阅读全文
摘要:
package lhm.test;/** * @author lenovo * */public class Person { private int id; private static int total = 0; /** * */ public Person() { // TODO A... 阅读全文
摘要:
这说明你要删除的oracle 用户"SE" 下面还有数据库对象,如 table, view 等,这样你删除用户时必须加选项 cascade:drop user se cascade; 表示删除用户SE,同时删除 SE 用户下的所有数据对象。还有一个办法就是先删除 se 下的所有数据对象,使 se ... 阅读全文
摘要:
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m max... 阅读全文