随笔分类 - oracle
摘要:https://blog.csdn.net/qiucheng_198806/article/details/80361944
阅读全文
摘要:https://blog.csdn.net/xueguichen/article/details/80434455 https://www.cnblogs.com/qzqdy/p/9596554.html
阅读全文
摘要:1 首先,下载需要安装的图形化工具Xmanager Enterprise 5和Oracle数据库安装的压缩包 2 建立用户和组并赋权 groupadd oinstall groupadd dba useradd -g oinstall -G dba oracle passwd oracle 3 安装
阅读全文
摘要:https://www.oracle.com/database/technologies/112010-linx8664soft.html
阅读全文
摘要:以sys用户赋权sysdba登录数据库; alter user 数据库连接用户名 identified by 新密码;
阅读全文
摘要:1 lsnrctl stop 关闭监听 2 shutdown immediate 关闭数据库 3 上传压缩包并解压到/home/下 4 chown -R oracle:oinstall 28729262 (压缩目录赋予权限) 5 su - oracle 6 cd /home/28729262 7 $
阅读全文
摘要:select count(*)from table_name where xxx=''; '' 中添加条件,xxx为匹配数据类型
阅读全文
摘要:select * from table_name where rownum <11 order by xxx; xxx 为匹配类型
阅读全文
摘要:select * from tables_name where rownum < 11; 如果查询不了,可能是用户权限问题。
阅读全文
摘要:select a.status,b.open_mode from gv$instance a,gv$database b; (查看数据库状态) select * from dba tablespace_usage_metrics order by USED_PERCENT desc ; (查看表空间
阅读全文
摘要:create user zhangsan identified by "zhangsan@123"; (创建zhangsan用户,设置密码为zhangsan@123) grant create session to zhangsan; (赋予zhangsan 用户登录数据库权限) oreacle 创
阅读全文
摘要:select * from dba_users where username = '用户名' ; (查询) create user "用户名" identifled by "密码" ; (创建:密码要符合oracle的创建规则,否则报错) drop user "用户名"; (删除)
阅读全文