欢迎来到天天文库
浏览记录
ID:16664168
大小:236.50 KB
页数:12页
时间:2018-08-23
《oracle数据库的基本操作》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、六、Oracle数据库的基本操作。切换Linux用户su-root输入密码即可切换用户1.连接数据库Sqlplus/assysdba以sys的身份登陆数据库2.解锁用户alteruserhridentifiedbyhraccountunlock;将hr用户解锁(用户名/密码)3.连接到用户Coonhr/hr连接到hr用户(用户名/密码)4.打开关闭Shutdown关闭数据库Startup打开数据库5.查看Select*fromtab;查看当前用户下的表Showuser显示当前用户6.设置时间显示格式altersessionsetnls_date_format='yyyy-mm-ddhh24:m
2、i:ss';结果:2013-07-2714:21:28forthequalityofreviewsandreview.Article26threview(a)theCCRAcompliance,whethercopiesofchecks;(B)whetherdoubleinvestigation;(C)submissionofprogramcompliance,investigationorexaminationofwhetherviewsareclear;(D)theborrower,guarantorloans7.oracle的表的管理7.1显示和设置环境变量1.linesize说明:设置
3、显示行的宽度,默认是80个字符showlinesizesetlinesize902.Pagesize说明:设置每页显示的行数目,默认是14用法和linesize一样7.2标识符命名规则表名和列的命名规则·必须以字母开头·长度不能超过30个字符·不能使用oracle的保留字·只能使用如下字符A-Z,a-z,0-9,$,#等7.3oracle支持的数据类型字符类char 定长最大2000个字符。例子:char(10) ‘小韩’前四个字符放‘小韩’,后添6个空格补全如‘小韩’varchar2(20) 变长 最大4000个字符。例子:varchar2(10)‘小韩’oracle分配四个字符。这样可
4、以节省空间。clob(characterlargeobject)字符型大对象最大4Gchar查询的速度极快浪费空间,查询比较多的数据用。varchar节省空间forthequalityofreviewsandreview.Article26threview(a)theCCRAcompliance,whethercopiesofchecks;(B)whetherdoubleinvestigation;(C)submissionofprogramcompliance,investigationorexaminationofwhetherviewsareclear;(D)theborrower,gu
5、arantorloans数字型number范围-10的38次方到10的38次方可以表示整数,也可以表示小数number(5,2)表示一位小数有5位有效数,2位小数范围:-999.99到999.99number(5)表示一个5位整数范围99999到-99999日期类型date包含年月日和时分秒 oracle默认格式 1-1月-1999timestamp这是oracle9i对date数据类型的扩展。可以精确到毫秒。图片blob二进制数据可以存放图片/声音 4G 一般来讲,在真实项目中是不会把图片和声音真的往数据库里存放,一般存放图片、视频的路径,如果安全需要比较高的话,则放入数据库。7.4创建
6、表创建新表createtablestudent( ---表名 xh number(4), --学号 xm varchar2(20), --姓名 sex char(2), --性别 birthdaydate, --出生日期 sal number(7,2) --奖学金);参照其他表结构创建新表Createtablebiaomingforthequalityofreviewsandreview.Article26threview(a)theCCRAcomplia
7、nce,whethercopiesofchecks;(B)whetherdoubleinvestigation;(C)submissionofprogramcompliance,investigationorexaminationofwhetherviewsareclear;(D)theborrower,guarantorloansAsselect*fromdempwhere1=2;新表t14的字
此文档下载收益归作者所有