摘要:
1. 日志文件 show user desc dba_data_files select file_name, tablespace_name, bytes from dba_data_files; select file#, name, checkpoint_change# from v$data 阅读全文
摘要:
-- 增加一张表xs_1,用来存放从xs表中删除的记录 create table xs_1 as select * from xs; truncate table xs_1; create or replace trigger t1 before delete on xs for each now 阅读全文
摘要:
游标 概念 提供了一种对具有多行数据查询结果集中的每一行数据分别进行单独处理的方法 显式游标 不带参数的显式游标 声明一个游标,读取学生的学号。 declare cursor my_cursor is select xh from xs; v_xh xs.xh%type; begin open my 阅读全文
摘要:
pl/sql 基本结构 declare example_text varchar2(100); begin example_text:='本例为plsql示例程序块!!!'; dbms_output.put_line(example_text); exception when others then 阅读全文
摘要:
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between bea 阅读全文