1.如何链接数据库
由操作系统验证方式:
SQL>conn / as sysdba
Copier après la connexion
由数据库验证方式
SQL>CONN username/password @databaseIdentified AS sysdba
Copier après la connexion
databaseIdentified是链接标识符,和数据库无关,可以自由命名。
AS 后面是角色
2. 如何执行一个SQL脚本文件
SQL>start file_name
SQL>@ file_name
Copier après la connexion
我们可以将多条sql语句保存在一个文本文件中,这样当要执行这个文件中的所有的sql语句时,用上面的任一命令即可,这类似于dos中的批处理。
3. 重新运行上一次运行的sql语句
SQL> run
Copier après la connexion
4. 将显示的内容输出到指定文件
SQL> SPOOL file_name
Copier après la connexion
在屏幕上的所有内容都包含在该文件中,包括你输入的sql语句。
5. 关闭spool输出
SQL> SPOOL OFF
Copier après la connexion
只有关闭spool输出,才会在输出文件中看到输出的内容。
6.显示一个表的结构
SQL> desc table_name
Copier après la connexion
7. COL命令:
我之用格式化的方法
COL columnname format a20
Copier après la connexion
改变缺省的列标题
COLUMN column_name HEADING column_heading
For example:
Sql>select * from dept;
DEPTNO DNAME LOC
Copier après la connexion
---------- ---------------------------- ---------
10 ACCOUNTING NEW YORK
sql>col LOC heading location
sql>select * from dept;
DEPTNO DNAME location
Copier après la connexion
--------- ---------------------------- -----------
10 ACCOUNTING NEW YORK
8. Set 命令:
我一般之用
set linesize 1000
set wrap off
当SQL语句的长度大于LINESIZE时,是否在显示时截取SQL语句。
SQL> SET WRA[P] {ON|OFF}
Copier après la connexion
当输出的行的长度大于设置的行的长度时(用set linesize n命令设置),当set wrap on时,输出行的多于的字符会另起一行显示,否则,会将输出行的多于字符切除,不予显示。
9.修改sql buffer中的当前行中,第一个出现的字符串
C[HANGE] /old_value/new_value
SQL> l
1* select * from dept
SQL> c/dept/emp
1* select * from emp
Copier après la connexion
10.显示sql buffer中的sql语句,list n显示sql buffer中的第n行,并使第n行成为当前行
L[IST] [n]
Copier après la connexion
10.在sql buffer的当前行下面加一行或多行
I[NPUT]
Copier après la connexion
11.将指定的文本加到sql buffer的当前行后面
A[PPEND]
SQL> select deptno,
2 dname
3 from dept;
DEPTNO DNAME
Copier après la connexion
---------- --------------
10 ACCOUNTING
20 RESEARCH
30 SALES
40 OPERATIONS
SQL> L 2
2* dname
SQL> a ,loc
2* dname,loc
SQL> L
1 select deptno,
2 dname,loc
3* from dept
SQL> /
DEPTNO DNAME LOC
---------- -------------- -------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
Copier après la connexion
12.再次执行刚才已经执行的sql语句
RUN
or
/
Copier après la connexion
13.执行一个存储过程
EXECUTE procedure_name
Copier après la connexion
14.显示sql*plus命令的帮助
HELP
Copier après la connexion
15.显示sql*plus系统变量的值或sql*plus环境变量的值
Syntax
SHO[W] option
Copier après la connexion
1) . 显示当前环境变量的值:
Show all
Copier après la connexion
2) . 显示当前在创建函数、存储过程、触发器、包等对象的错误信息
Show error
Copier après la connexion
当创建一个函数、存储过程等出错时,变可以用该命令查看在那个地方出错及相应的出错信息,进行修改后再次进行编译。
3) . 显示初始化参数的值:
show PARAMETERS [parameter_name]
Copier après la connexion
4) . 显示数据库的版本:
show REL[EASE]
Copier après la connexion
5) . 显示SGA的大小
show SGA
Copier après la connexion
6) 显示当前的用户名
show user
Copier après la connexion
******************************************
ORA-00054: resource busy and acquire with NOWAIT specified
症状:
locked_mode为2,3,4不影响DML(insert,delete,update,select)操作,
但DDL(alter,drop等)操作会提示ora-00054错误。
有主外键约束时 update / delete ... ; 可能会产生4,5锁。
DDL语句时是6的锁。
处理方法:
以DBA角色, 查看当前数据库里锁的情况可以用如下SQL语句:
select object_id,session_id,locked_mode from v$locked_object;
或select t2.username,t2.sid,t2.serial#,t2.logon_time
from v$locked_object t1,v$session t2
where t1.session_id=t2.sid order by t2.logon_time;
如果有长期出现的一列,可能是没有释放的锁。
我们可以用下面SQL语句杀掉长期没有释放非正常的锁:
alter system kill session 'sid,serial#';
最后恢复正常.