上一页 1 ··· 6 7 8 9 10 11 12 下一页
  2022年3月30日
摘要: Greatdb Cluster 5.0 的语法可以参考 mysql 8 int 类型 经常有开发建表的时候会使用int(4) 来指定列类型,那么这个4代表的是什么,它并不表示存储的字节,因为int类型用4个字节存储是数据库定的。 这个4指的是数字显示的宽度,插入数字超过4位,正常显示,不足4位时,可 阅读全文
posted @ 2022-03-30 15:05 JennyYu 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 在执行ddl时有时会报出ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired的错误,那是因为有会话锁住了ddl操作的表。 表被锁有可能是忘记关掉某个会话,或者某个会话因打开的sercureCRT窗口 阅读全文
posted @ 2022-03-30 10:34 JennyYu 阅读(288) 评论(0) 推荐(0) 编辑
  2022年3月29日
摘要: show variables like '%read_only%';+ + +| Variable_name | Value |+ + +| innodb_read_only | OFF || read_only | OFF || super_read_only | OFF || transacti 阅读全文
posted @ 2022-03-29 19:21 JennyYu 阅读(114) 评论(0) 推荐(0) 编辑
摘要: oracle 修改会话级别参数 alter session set current_schema=scott alter session set statistics_level=all; 修改全局参数 alter system set memory_target=10G scope=spfile; 阅读全文
posted @ 2022-03-29 19:17 JennyYu 阅读(114) 评论(0) 推荐(0) 编辑
摘要: TIMESTAMP Data Type The TIMESTAMP data type is an extension of the DATE data type. It stores the year, month, and day of the DATE data type, plus hour 阅读全文
posted @ 2022-03-29 18:50 JennyYu 阅读(3963) 评论(0) 推荐(0) 编辑
  2022年3月24日
摘要: 对oracle 登录的很清楚 sqlplus / as sysdba sqlplus scott/tiger 这种登录方式属于本地登录,不走网络,跟监听没有关系,登录的实例为在环境变量中设置的$ORACLE_SID sqlplus scott/tiger@orcl 这种登录方式即使在服务器上登录也是 阅读全文
posted @ 2022-03-24 20:10 JennyYu 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1. secureCRT软件连到虚拟机后,在标签页右键选择conect SFTP Session,打开SFTP窗口 2. 输入help 可以查看ftp的相关命令 常用命令: lcd path : Change local directory to 'path' (本地路径) cd path: Cha 阅读全文
posted @ 2022-03-24 18:22 JennyYu 阅读(529) 评论(0) 推荐(0) 编辑
摘要: ifconfig: command not found. 针对CentOS,其最小化安装已经不会包含ifconfig和netstat相关的网络工具了 yum search ifconfig 安装: yum install net-tools.x86_64 -y 阅读全文
posted @ 2022-03-24 18:08 JennyYu 阅读(99) 评论(0) 推荐(0) 编辑
  2022年2月24日
摘要: DB_FILE_MULTIBLOCK_READ_COUNT PropertyDescription Parameter type Integer Default value The default value corresponds to the maximum I/O size that can 阅读全文
posted @ 2022-02-24 10:30 JennyYu 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 开发的同学建oracle 表时候,字段类型经常设置会设置成varchar2(4000), 因为varchar2是可变长度字符串,实际使用多少就占用多少,设置的长度,是说字段可达到的最大长度,但是在建索引的时候发现一个问题: 我们使用在线创建索引或在线重新编译索引时会报出字段长度超长的问题,虽然这列上 阅读全文
posted @ 2022-02-24 09:57 JennyYu 阅读(1092) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页