当前位置: 首页 > news >正文

网站挂黑链泰安网络信息公司

网站挂黑链,泰安网络信息公司,南昌市科协网站,施工企业项目管理系统安装oracle11 官网下载地址 Oracle Database 11g Release 2 for Microsoft Windows (x64) 官网下载慢可访问我的资源 也可以网盘获取 链接#xff1a;https://pan.baidu.com/s/1RDrGkqDA7tfKRnpJXUBMDw 提取码#xff1a;z3na 上传安装包到服务器 在指定目录下创建文件…安装oracle11 官网下载地址 Oracle Database 11g Release 2 for Microsoft Windows (x64) 官网下载慢可访问我的资源 也可以网盘获取   链接https://pan.baidu.com/s/1RDrGkqDA7tfKRnpJXUBMDw  提取码z3na 上传安装包到服务器 在指定目录下创建文件夹installfile我是在/newdisk/oracle/installfile将安装文件上传到该文件夹 禁用防火墙 systemctl stop firewalld.servicesystemctl disable firewalld.service 安装依赖包 yum -y install binutils compat-libcap1 compat-libstdc-33 compat-libstdc-33*i686 compat-libstdc-33*.devel compat-libstdc-33 compat-libstdc-33*.devel gcc gcc-c glibc glibc*.i686 glibc-devel glibc-devel*.i686 ksh libaio libaio*.i686 libaio-devel libaio-devel*.devel libgcc libgcc*.i686 libstdc libstdc*.i686 libstdc-devel libstdc-devel*.devel libXi libXi*.i686 libXtst libXtst*.i686 make sysstat unixODBC unixODBC*.i686 unixODBC-devel unixODBC-devel*.i686验证依赖包 rpm -q binutils compat-libcap1 compat-libstdc-33 gcc gcc-c glibc glibc-devel ksh libaio libaio-devel libgcc libstdc libstdc-devel libXi libXtst make sysstat unixODBC unixODBC-devel创建orcale用户 [rootlocalhost installfile]# groupadd -g 502 oinstall [rootlocalhost installfile]# groupadd -g 503 dba [rootlocalhost installfile]# groupadd -g 504 oper [rootlocalhost installfile]# groupadd -g 505 asmadmin [rootlocalhost oracle]# sudo useradd -u 502 -g oinstall -G oinstall,dba,asmadmin,oper -s /bin/bash -m oracle [rootlocalhost oracle]# passwd oracle Changing password for user oracle. New password: BAD PASSWORD: The password is shorter than 8 characters Retype new password: passwd: all authentication tokens updated successfully. [rootlocalhost oracle]#创建oradata目录解压oracle安装包 mkdir /oradata 将/newdisk/oracle/oradatainstallfile/文件夹下的压缩包剪切到/oradata下面 drwxr-xr-x. 2 root root 98 Feb 27 00:31 installfile drwxr-xr-x. 2 root root 6 Feb 27 02:03 oradata [rootlocalhost oracle]# cp installfile/* oradata/ [rootlocalhost oracle]# ls oradata/ p13390677_112040_Linux-x86-64_1of7.zip p13390677_112040_Linux-x86-64_2of7.zip [rootlocalhost oracle]#将/newdisk/oracle/oradata上的目录内的所有文件和文件夹的归属都修改为oracle用户 chown -R oracle:oinstall /newdisk/oracle/oradata 登录oracle用户将两个压缩文件解压 [rootlocalhost oradata]# su oracle [oraclelocalhost oradata]$ unzip p13390677_112040_Linux-x86-64_1of7.zip [oraclelocalhost oradata]$ unzip p13390677_112040_Linux-x86-64_2of7.zip 会多一个database文件夹  root用户下修改系统配置参数 [oraclelocalhost oradata]$ su root Password: [rootlocalhost oradata]# vim /etc/security/limits.conf#在最后加上下面配置oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 oracle soft stack 10240 配置oracle安装目录 用oracle用户并创建安装目录 [rootlocalhost oradata]# su oracle [oraclelocalhost oradata]$ pwd /newdisk/oracle/oradata [oraclelocalhost oradata]$ mkdir -p /newdisk/oracle/oradata/oracle11g配置环境变量 用oracle用户 [oraclelocalhost /]$ cd [oraclelocalhost ~]$ vim .bash_profile在最后一行输入下面的命令 #这边地址根据安装目录定 export ORACLE_BASE/newdisk/oracle/oradata/oracle11g export ORACLE_HOME$ORACLE_BASE/product/11.2.0.3/dbhome_1 export ORACLE_SIDprod export NLS_LANG.AL32UTF8 export PATH${PATH}:${ORACLE_HOME}/bin:$ORACLE_HOME/lib64 使环境变量生效 [oraclelocalhost ~]$ source .bash_profile修改安装配置文件 拷贝安装文件db_install.rsp到/newdisk/oracle/oradata/目录下 [oraclelocalhost oradata]$ cp database/response/db_install.rsp /newdisk/oracle/oradata/ [oraclelocalhost oradata]$ ll total 2487228 drwxr-xr-x. 7 oracle oinstall 136 Aug 26 2013 database -rw-r--r--. 1 oracle oinstall 25116 Feb 27 03:31 db_install.rsp drwxr-xr-x. 2 oracle oinstall 6 Feb 27 03:29 oracle11g -rw-r--r--. 1 oracle oinstall 1395582860 Feb 27 02:04 p13390677_112040_Linux-x86-64_1of7.zip -rw-r--r--. 1 oracle oinstall 1151304589 Feb 27 02:04 p13390677_112040_Linux-x86-64_2of7.zip 编辑db_install.rsp [oraclelocalhost oradata]$ vim db_install.rsp下面分别在文件中的对应行号内进行相应的设置 可以使用 :set number 显示行号 29 oracle.install.optionINSTALL_DB_AND_CONFIG37 ORACLE_HOSTNAME你的虚拟机ip42 UNIX_GROUP_NAMEoinstall49 INVENTORY_LOCATION/newdisk/oracle/oradata/oraInventory86 SELECTED_LANGUAGESen,zh_CN91 ORACLE_HOME/newdisk/oracle/oradata/oracle11g/product/11.2.0.3/dbhome_196 ORACLE_BASE/newdisk/oracle/oradata/oracle11g107 oracle.install.db.InstallEditionEE154 oracle.install.db.DBA_GROUPdba160 oracle.install.db.OPER_GROUPoper189 oracle.install.db.config.starterdb.typeGENERAL_PURPOSE194 oracle.install.db.config.starterdb.globalDBNameprod199 oracle.install.db.config.starterdb.SIDprod213 oracle.install.db.config.starterdb.characterSetAL32UTF8221 oracle.install.db.config.starterdb.memoryOptiontrue229 oracle.install.db.config.starterdb.memoryLimit512262 oracle.install.db.config.starterdb.password.ALLoracle336 oracle.install.db.config.starterdb.storageTypeFILE_SYSTEM_STORAGE 344 oracle.install.db.config.starterdb.fileSystemStorage.dataLocation /newdisk/oracle/oradata/oracle11g/data 351 oracle.install.db.config.starterdb.fileSystemStorage.recoveryLocation /newdisk/oracle/oradata/oracle11g/fast_recovery_area 400 DECLINE_SECURITY_UPDATEStrue 开始安装oracle 输入下面的命令 进入/newdisk/oracle/oradata/database目录 执行安装命令 ./runInstaller -silent -ignoreSysPrereqs -responseFile /newdisk/oracle/oradata/db_install.rsp -ignorePrereq等待直到出现下面代码就成功了  连接oracle sqlplus / as sysdba 正常情况会连接成功而我出现了如下的情况 这就是虽然安装成功了但问题可能在于sqlplus命令未能正确添加到系统路径中 所以在安装目录找sqlplus命令 [oraclelocalhost database]$ find /newdisk/ -name sqlplus /newdisk/oracle/oradata/oracle11g/product/11.2.0.3/dbhome_1/bin/sqlplus /newdisk/oracle/oradata/oracle11g/product/11.2.0.3/dbhome_1/sqlplus我们先打印ORACLE_HOME 发现和我们安装的目录不一样查看~/.bash_profile文件 在打印ORACLE_BASE 发现是空查看 ~/.bash_profile文件 发现是有值的那就是没有刷新配置刷新一下配置在查看 再次连接oracle成功 navicat连接测试  使用sys用户密码是上面设置的oracle oracle.install.db.config.starterdb.password.ALLoracle 使用sys登录需要时sysdba角色如下 卸载oracle 以root用户身份登录系统 停止所有Oracle相关进程。您可以使用以下命令来列出所有Oracle进程并停止它们请注意这里假设您正在使用Oracle 11g ps -ef | grep oracle | grep -v grep 然后您可以使用kill命令停止每个进程。例如如果您想要停止进程ID为1234的进程可以使用以下命令 kill -9 1234 停止监听 lsnrctl stop 删除安装目录 rm -rf /newdisk/oracle/oradata/oracle11grm -rf /newdisk/oracle/oradata/oraInventory/ 创建用户并赋予权限 --创建用户 CREATE USER testuser IDENTIFIED BY 123456;--分配连接权限GRANT CONNECT TO testuser;-- 分配创建会话权限 GRANT CREATE SESSION TO testuser;--把所有权限都给用户 GRANT ALL PRIVILEGES TO testuser;查询所有表空间 SELECT --B.file_name 文件名,A.TABLESPACE_NAME 表空间名,TOTAL 表空间大小,FREE 表空间剩余大小,(TOTAL - FREE) 表空间使用大小,TOTAL / (1024 * 1024 * 1024) 表空间大小(G),FREE / (1024 * 1024 * 1024) 表空间剩余大小(G),(TOTAL - FREE) / (1024 * 1024 * 1024) 表空间使用大小(G),ROUND((TOTAL - FREE) / TOTAL, 4) * 100 使用率 % FROM (SELECT TABLESPACE_NAME,SUM(BYTES) FREEFROM DBA_FREE_SPACEGROUP BY TABLESPACE_NAME) A,(SELECT TABLESPACE_NAME,-- file_name,SUM(BYTES) TOTALFROM DBA_DATA_FILESGROUP BY TABLESPACE_NAME/*,file_name*/) B WHERE A.TABLESPACE_NAME B.TABLESPACE_NAME; 创建表空间 CREATE TABLESPACE 表空间名称 LOGGING DATAFILE 挂载地址 SIZE 大小 ;--举例 CREATE TABLESPACE TBS_INDEX_ITMS LOGGING DATAFILE /export/home/oradata/TBS_INDEX_ITMS SIZE 5120M ; 删除表空间 --删除空的表空间但是不包含物理文件 drop tablespace tablespace_name; --删除非空表空间但是不包含物理文件 drop tablespace tablespace_name including contents; --删除空表空间包含物理文件 drop tablespace tablespace_name including datafiles; --删除非空表空间包含物理文件 drop tablespace tablespace_name including contents and datafiles; --如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段就要加上CASCADE CONSTRAINTS drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS; 执行sql文件 -bash-4.2$ sqlplus gtmsmanager/gtmsmanager10.21.1.176:1521/gtmsdbSQL*Plus: Release 11.2.0.4.0 Production on Tue Feb 27 09:34:03 2024Copyright (c) 1982, 2013, Oracle. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL /root/oracle/insert.sql如果没有权限给所有用户赋予文件夹的所有权限再次执行就行了 chmod ow /root/oracle/ 导入导出dmp 更多导出查看 exp helpy 导出dmp 导出数据库全部数据 仅输入数据库连接串和文件导出路径就可以执行导出导出文件后缀为dmp exp 用户名/密码IP/服务名 FILE导出文件路径 exp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp_all.dmp;[oraclelocalhost oradata]$ exp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp_all.dmp;Export: Release 11.2.0.4.0 - Production on Tue Feb 27 22:29:54 2024Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Export done in AL32UTF8 character set and AL16UTF16 NCHAR character set . exporting pre-schema procedural objects and actions . exporting foreign function library names for user TESTUSER . exporting PUBLIC type synonyms . exporting private type synonyms . exporting object type definitions for user TESTUSER About to export TESTUSERs objects ... . exporting database links . exporting sequence numbers . exporting cluster definitions . about to export TESTUSERs tables via Conventional Path ... . . exporting table STUDENT 0 rows exported . . exporting table TESTUSER 0 rows exported . exporting synonyms . exporting views . exporting stored procedures . exporting operators . exporting referential integrity constraints . exporting triggers . exporting indextypes . exporting bitmap, functional and extensible indexes . exporting posttables actions . exporting materialized views . exporting snapshot logs . exporting job queues . exporting refresh groups and children . exporting dimensions . exporting post-schema procedural objects and actions . exporting statistics Export terminated successfully without warnings. [oraclelocalhost oradata]$ ls dmpdir cyz_expdp_all.dmp cyz_expdp.dmp按表名导出 exp user/pwdip/service FILE导出文件地址 TABLES表名1,表名2;exp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT,TESTUSER;[oraclelocalhost oradata]$ exp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT,TESTUSER;Export: Release 11.2.0.4.0 - Production on Tue Feb 27 22:23:48 2024Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Export done in AL32UTF8 character set and AL16UTF16 NCHAR character setAbout to export specified tables via Conventional Path ... . . exporting table STUDENT 0 rows exported . . exporting table TESTUSER 0 rows exported Export terminated successfully without warnings. [oraclelocalhost oradata]$ ls dmpdir cyz_expdp.dmp导入dmp 更多导入查看 imp helpy 导入整个文件 imp user/pwdip/service FILE导出文件地址 FULLYimp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp_all.dmp FULLY[oraclelocalhost oradata]$ imp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp_all.dmp FULLYImport: Release 11.2.0.4.0 - Production on Tue Feb 27 22:37:45 2024Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsExport file created by EXPORT:V11.02.00 via conventional path import done in AL32UTF8 character set and AL16UTF16 NCHAR character set . importing TESTUSERs objects into TESTUSER . . importing table STUDENT 0 rows imported . . importing table TESTUSER 0 rows imported Import terminated successfully without warnings.按表名导入 导入文件中的多个表 imp user/pwdip/service FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT,TESTUSERimp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT,TESTUSER[oraclelocalhost oradata]$ imp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT,TESTUSERImport: Release 11.2.0.4.0 - Production on Tue Feb 27 22:42:07 2024Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsExport file created by EXPORT:V11.02.00 via conventional path import done in AL32UTF8 character set and AL16UTF16 NCHAR character set . importing TESTUSERs objects into TESTUSER . importing TESTUSERs objects into TESTUSER . . importing table STUDENT 0 rows imported . . importing table TESTUSER 0 rows imported Import terminated successfully without warnings.导入文件中的一个表 imp user/pwdip/service FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENTimp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT[oraclelocalhost oradata]$ imp testuser/123456192.168.31.130/prod FILE/newdisk/oracle/oradata/dmpdir/cyz_expdp.dmp TABLESSTUDENT,TESTUSERImport: Release 11.2.0.4.0 - Production on Tue Feb 27 22:42:07 2024Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsExport file created by EXPORT:V11.02.00 via conventional path import done in AL32UTF8 character set and AL16UTF16 NCHAR character set . importing TESTUSERs objects into TESTUSER . importing TESTUSERs objects into TESTUSER . . importing table STUDENT 0 rows imported Import terminated successfully without warnings.修改用户密码  sqlplus SYS/oraclegtmsdb as sysdbaalter user GTMSMANAGER identified by 123456;--例子 -bash-4.2$ sqlplus SYS/oraclegtmsdb as sysdbaSQL*Plus: Release 11.2.0.4.0 Production on Tue Feb 27 09:59:06 2024Copyright (c) 1982, 2013, Oracle. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL alter user GTMSMANAGER identified by 123456;User altered.SQL序列操作 新建序列 -- Create sequence testseq是序列名 create sequence testseq minvalue 1 maxvalue 999999999999999999999999999 start with 1 increment by 1 cache 20; 查询序列当前值必须执行一次nextval否则会报错 --testseq是名称 select testseq.currval from dual 查询序列下一个值 --testseq序列名 select testseq.nextval from dual 删除序列 --testseq序列名 DROP SEQUENCE testseq;
http://www.zqtcl.cn/news/736192/

相关文章:

  • 备案ip 查询网站查询网站校园门户网站建设方案
  • 网站seo快速优化技巧建设网站的需要学习哪些课程
  • 网站建设微信托管wordpress p=
  • 专业手机网站制作哪家好吉林建筑大学本科招生网
  • 建立一个网站需要哪些google和百度等相关网站的广告词
  • 手机开发网站教程做古建的那些网站比较适合
  • 网站建设公司的前景长沙商城网站开发
  • 大型网站tag标签 索引自己做网站需要哪些软件
  • 石排做网站万网网站备案流程
  • 南京建设银行网站首页简单的ui界面制作
  • 门户网站 建设 如何写如何布置网站
  • 网站前台功能模块介绍建设银行信用卡网站是哪个好
  • 用python做网站我那些网站开发开发语言
  • 建设网站怎样做安卓app软件公司
  • 重庆seo整站优化效果上海城建建设官方网站
  • 做淘宝要网站兰州画册设计
  • 外贸网站排行榜前十名电影网站标题怎么做流量多
  • 网站建设吉金手指专业13网站备案完成后不解析
  • 社保网站减员申报怎么做长春建筑网站
  • 网站开发用原生wordpress读者墙
  • 食品网站网页设计成都建网页
  • 网站建设 珠海专业团队表情包张伟
  • 建设铝合金窗网站.net制作网站开发教程
  • 网站后台服务器内部错误wordpress 多级菜单
  • 怎样更新网站内容怎么查看网站是哪家公司做的
  • 建设网站网站建站建立一个网站平台需要多少钱
  • 学校网站模板 html网站建设技术路线
  • 图片网站如何做百度排名深入挖掘wordpress
  • 网站建设的前景网站建设分为哪三部分
  • 房地产公司网站下载校园二手信息网站建设