
Oracle
Oracle笔记
请你打开电视看看
这个作者很懒,什么都没留下…
展开
-
实验三
SQL*Plus: Release 11.2.0.1.0 Production on 星期五 10月 9 13:23:09 2020 Copyright (c) 1982, 2010, Oracle. All rights reserved. 请输入用户名: system@study 输入口令: 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioni.原创 2020-10-09 15:35:35 · 219 阅读 · 0 评论 -
Oracle实验二
SQL*Plus: Release 11.2.0.1.0 Production on 星期一 9月 28 11:12:40 2020 Copyright (c) 1982, 2010, Oracle. All rights reserved. 请输入用户名: sys@study as sysdba 输入口令: 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Par.原创 2020-09-28 15:30:18 · 614 阅读 · 0 评论 -
Oracle数据库实验一(用户登陆以及数据库创建)
SQL*Plus: Release 11.2.0.1.0 Production on 星期一 9月 21 17:11:36 2020 Copyright (c) 1982, 2010, Oracle. All rights reserved. 请输入用户名: system@study 输入口令: 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioni.原创 2020-09-25 14:03:28 · 309 阅读 · 0 评论 -
Oracle数据库体系结构 和基本操作
用户:是在实例下建立的 不同实例可以建相同用户名字 是管理表的基本单位 表空间:逻辑单位,当数据库很大时 ,会将数据库细分为表空间 数据文件:数据文件,多个数据文件 组成表空间 创建表空间 create tablespace oracletable datafile 'd:\oracle_t\oracle_1.dbf’size 100m autoextend on next 10m; 删除表空间 drop tablespace oracletable; 创建用户 create user li.原创 2020-09-16 17:19:17 · 184 阅读 · 0 评论