
DataBase
XR0ng
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQL Server 2008功能选择
SQL Server 2008功能选择原创 2015-12-11 14:52:39 · 2403 阅读 · 0 评论 -
Oracle表空间文件迁移
set ORACLE_SID = ORCL; sqlplus /nolog connect sys/1234 as sysdba; alter tablespace tablespace_name offline; alter database rename file '......\tablespace_name.dbf' to '......\tablespace_name.dbf'原创 2015-12-11 14:58:06 · 406 阅读 · 0 评论 -
PL SQL游标
将hregright表中不存在hrno的记录,用house表中的hrno填充(house唯一的时候) declare cursor house_cur is select h.regno,h.hrno from house h where h.hrno is not null group by h.regno,h.hrno having count(h.r原创 2015-12-11 14:55:39 · 299 阅读 · 0 评论