- 浏览: 15333 次
最新评论
文章列表
第五章 第五章 PL/SQL
SQL>set serveroutput on; --开启客户端输出
SQL>begin
2 dbms_output.put_line('世界、你好');
3 end;
4 /
-------------------------------------------------------------------------
变量输出
SQL>set serveroutput on;
SQL>declare(申明)
2 str(变量名) constant varchar(20) :='Oracle 11g ...
第四章 数据库对象
建立一个表空间
create tablespace xiongspace
datafile 'e:\oracle\xiongspace.dbf' ---存放到E盘
size 5m ----默认大小
autoextend on; ---自动增长
创建一个账号
create user admin --账号
identified by svse --密码
default tablespace xiongspace --默认的表空间
temporary(暂时) tablespace temp; --临时表数据
----------------------- ...
第三章 分区表和加锁
锁定用户、
alter user scott account lock;
解锁用户、
alter user scott account unlock;
SQL>中的符号
select * from scott.emp where sal<=any(select sal from scott.emp where deptno=30);
将一个值和一组值进行比较、返回满足条件的数据
savepoint p1;
将当前的数据建立一个保存点、便于事物的回滚、
rollback to p1;
回滚到保存点
-------------------------------- ...
Oracle
第二章
1、创建表空间
SQL>CRETAE TABLESPACE(空间) STUSYS----(创建一个STUSYS的表空间)
2 DATAFILE(数据) 'F:\ORACLE\STUSYS.DBF'---(在F盘目录下创建一个文件)
3 SIZE 30M ------(默认空间)
4 AUTOEXTEND ON;------(默认增长)
Tablespace created (表空间创建成功)
------------------------------------------------------------------------
2、创建用户 ...