
Oracle
笔记
快乐写代码
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Oracle创建表空间 ORA-01119 ORA-27040 (OS 21)设备未就绪
PL/SQL连接数据库后创建表空间报错 ORA-01119: error in creating database file 'D:\tablespace\ssm.dbf‘ ORA-27040: file create error, unable to create file OSD-04002:无法打开文件 O/S-Error: (OS 21)设备未就绪。 网上翻阅了很多博客,说的都是O/S-...原创 2019-12-25 00:07:34 · 1739 阅读 · 0 评论 -
plsql编程,Orcale笔记
—视图 —视图的概念:视图就是提供一个查询的窗口,所有数据来自于原表。 —查询语句创建表 create table emp as select * from scott.emp; select * from emp; —创建视图【必须有dba权限】 create view v_emp as select ename, job from emp; —查询视图 select * from v_emp;...原创 2019-12-23 00:32:23 · 208 阅读 · 0 评论 -
Oracle的基本操作,笔记篇
创建表空间 create tablespace itheima datafile ‘c:\itheima.dbf’ size 100m autoextend on next 10m; 删除表空间 drop tablespace itheima; 创建用户 create user itheima identified by itheima default tablespace itheima; 给用...原创 2019-12-23 00:32:12 · 159 阅读 · 0 评论