文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

学习oracle

2024-04-02 19:55

关注

下载oracle

网址http://www.oracle.com/technetwork/index.html

学习oracle

学习oracle

根据你的机型选择下载安装不同版本,首先你得注册一个oracle账户才能下载。

官网EX Edition是学习免费用的。

我的电脑是64位所以选择了一下版本。

学习oracle

解压安装

 

(1)

学习oracle

(2)

学习oracle

(3)

学习oracle


(4)

学习oracle


我安装的在D盘空间足够大

(5)输入口令随意取自己,但要自己记住哦,我输入的是1234


学习oracle


(6)安装

学习oracle


(7)

学习oracle


配置oracle

(1)启动

学习oracle


2)sqlplus 连接数据库用户system 密码1234(前边设置的)

1.  建立表空间和用户的步骤:  

2.  用户  

3.  建立:create user 用户名 identified by "密码";  

4.  授权:grant create session to 用户名;  

5.              grant create table to  用户名;  

6.              grant create tablespace to  用户名;  

7.              grant create view to  用户名;  

例如:

建立:create user myuseridentified by "password"; 

授权:grant createsession to myuser; 

     grant create table to myuser; 

     grant create tablespace to myuser; 

      grant create view to  myuser; 

grant connect,resource to myuser;  

grant create any sequence to myuser;  

grant delete any table to myuser;  

grant insert any table to myuser;  

grant select any table to myuser;  

grant unlimited tablespace to myuser;  

grant execute any procedure to myuser;  

grant update any table to myuser;  

学习oracle

学习oracle


 

1.  表空间  

2.  建立表空间(一般建N个存数据的表空间和一个索引空间):  

3.  create tablespace 表空间名  

4.  datafile ' 路径(要先建好路径)\***.dbf  ' size *M  

5.  tempfile ' 路径\***.dbf ' size *M  

6.  autoextend on  --自动增长  

7.  --还有一些定义大小的命令,看需要  

8.   default storage(  

9.   initial 100K,  

10. next 100k,  

11.); 

 

例子:创建表空间 

create tablespace DEMOSPACE  

datafile'D:\soft\oracle\app\oracle\oradata\oracle_tablespaces\DEMOSPACE_TBSPACE.dbf'size 1500M

autoextend on next 5M maxsize 3000M; 

删除表空间 

drop tablespace DEMOSPACE including contentsand datafiles  

学习oracle

 

  1. 1.  备份数据库

  2. 2.  --导入导出命令     

  3. 3.  ip导出方式: exp myuser/password@127.0.0.1:1521/orcl file=f:/f.dmp full=y  

  4. 4.  exp myuser/pssword@orcl file=f:/f.dmp full=y  

  5. 5.  imp myuser/password@orcl file=f:/f.dmp full=y ignore=y  

重新登录

使用创建的用户登录

学习oracle



使用plsql

配置tns

学习oracle

LISTENER_ORCL =

 (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))


安装plsql 配置oci

学习oracle

登录

学习oracle


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯