上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 55 下一页
摘要: 查询数据库中的存储过程和函数 select `name` from mysql.proc where db = 'xx' and `type` = 'PROCEDURE' //存储过程 select `name` from mysql.proc where db = 'xx' and `type` 阅读全文
posted @ 2021-07-28 19:09 雪竹子 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 一、MySql官网文档解释在**mysql5.***中描述如下 Different limits related to tables and indexes. For example, the maximum number of ordered indexes in the cluster is d 阅读全文
posted @ 2021-07-28 10:29 雪竹子 阅读(657) 评论(0) 推荐(0) 编辑
摘要: ADATA Custer database manual or auto snapshot hangs and never returns: Bug info: https://support.oracle.com/CSP/ui/flash.html#tab=KBHome%28page=KBHome 阅读全文
posted @ 2021-07-28 09:58 雪竹子 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 创建表时报错,索引列超过最大约束ERROR 1709 (HY000): Index column size too large. The maximum column size is 767 bytes. 1. 错误原因由于 MySQL Innodb 引擎表索引字段长度的限制为 767 字节,因此对 阅读全文
posted @ 2021-07-28 09:49 雪竹子 阅读(244) 评论(0) 推荐(0) 编辑
摘要: DELIMITER $$ CREATE PROCEDURE pro_insert(IN maxNum INT) BEGIN DECLARE i INT DEFAULT(1); while i<=maxNum DO INSERT INTO employees (first_name ,last_nam 阅读全文
posted @ 2021-07-21 09:24 雪竹子 阅读(747) 评论(0) 推荐(0) 编辑
摘要: 尝试手工生成,报错sysaux表空间满。 BEGIN DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT (); END; 检查DBA_HIST_SNAPSHOT和dba_hist_active_sess_history。发现有错误的过期数据,mmon无法自动清除。 手 阅读全文
posted @ 2021-07-19 18:43 雪竹子 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 如何从awr中分析当前内存是否需要修改 主要查看 Advisory Statistics 首先第一列看target size是预估的值,Factor是预估值与实际值的比值。 从比值为1开始向上看,如果后面的物理读或者其他参数没有大的变化,说明对应的内存参数可以减少或者保持不动。 从比值为1开始向下看 阅读全文
posted @ 2021-07-19 18:17 雪竹子 阅读(390) 评论(0) 推荐(1) 编辑
摘要: column h0 format 999 column h1 format 999 column h2 format 999 column h3 format 999 column h4 format 999 column h5 format 999 column h6 format 999 col 阅读全文
posted @ 2021-07-15 17:33 雪竹子 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 一、AL32UTF8转成ZHS16GBK cmd中输入“SQLPLUS”,回车,然后再在用户名下输入“SYS AS SYSDBA”,回车 密码后面输入“SYS”,回车。这里输入密码是隐式的,所以看不见,只要输入就好了。 这里输入SQL查询语句,select * from nls_database_p 阅读全文
posted @ 2021-07-14 22:26 雪竹子 阅读(3684) 评论(2) 推荐(0) 编辑
摘要: 1.检查告警日志发现Checkpoint not complete 报错如下: Sat May 21 07:36:43 2016 Thread 1 cannot allocate new log, sequence 6672 Checkpoint not complete Current log# 阅读全文
posted @ 2021-07-14 21:59 雪竹子 阅读(402) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 55 下一页