摘要: 数据库:myOnly 创建表:myTable 的备份表 myTable_tmpe create table myTable_tmpe as select * from myTable ; 补充: --在myTable 中添加一条学生的数据 ;insert into myTable (id, type 阅读全文
posted @ 2017-03-20 15:00 坛花一现 阅读(39167) 评论(1) 推荐(1) 编辑
摘要: 如果启动eclipse,弹出一个窗口,上面显示,8080 、8009、……等的提示,说明端口有冲突, 解决办法如下: 1.打开cmd 2.输入 netstat -ano|findstr 8080 然后按回车键 3.输入 taskkill /pid 6856 /f 回车即可 4.注意:红色字体数字,是 阅读全文
posted @ 2017-03-20 14:39 坛花一现 阅读(1452) 评论(0) 推荐(0) 编辑
摘要: 执行空表: 1 执行 Select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 or num_rows is null;2 执行查询结果 数据导出: 1 将数据库ORCL完全导出, 阅读全文
posted @ 2017-01-17 15:25 坛花一现 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1 新建表空间 create tablespace MYSPACES logging datafile 'F:/logging/MYSPACES.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; 阅读全文
posted @ 2017-01-17 15:16 坛花一现 阅读(140) 评论(0) 推荐(0) 编辑