TableSpace 表空间: 一个表空间对应多个数据文件(物理的dbf文件) 用语法方式创建tablespace,用sysdba登陆: --创建表空间mytabs,大小为10MB:
create tablespace mytabs datafile 'C:Oracleoradatamydbmytabs1.dbf' size 10M; alter user zgl default tablespace mytabs; --把tabs做为zgl的默认表空间。 grant unlimited tablespace to zgl; --将操作表空间的权限给zgl。
Exception 示例:
create or replace procedure pro_test_exception(vid in varchar2) is userName varchar2(30); begin select name into userName from t_user where id=vid; dbms_output.put_line(userName); exception when no_data_found then dbms_o...[ 查看全文 ]