
Oracle
cngine
这个作者很懒,什么都没留下…
展开
-
ORACLE 递归删除数据
数据库设计:CREATE TABLE ADVERTISE_CATEGORY( CATEGORY_ID NUMBER PRIMARY KEY, --节点ID CATEGORY_NAME VARCHAR2(500), --节点名字 PARENT_ID NUMBER原创 2009-12-01 09:52:00 · 4706 阅读 · 0 评论 -
oracle超出表空间'USERS'的空间限量
解决办法:以sysdba的身份登录,然后在sql plus 上执行 alter user quota unlimited on users;原创 2009-11-30 13:55:00 · 617 阅读 · 0 评论 -
ORACLE 游标的使用
declare cursor myCursor is select * from 表名;myRow myCursor%rowtype;begin open myCursor; loop fetch myCursor into myRow; exit when myCursor%notfound; --要执行的原创 2010-01-15 10:27:00 · 368 阅读 · 0 评论