摘要:
1. 复制表结构及其数据:create table table_name_new as select * from table_name_old2. 只复制表结构:create table table_name_new as select * from table_name_old where 1= 阅读全文
摘要:
--查询所有对象select distinct type from user_source;--查询当前用户的序列总数select count(*) from dba_sequences where sequence_owner='XXXXXX';--查看当前用户的所有序列select SEQUEN 阅读全文
摘要:
根据端口查看对应进程:lsof -i:端口根据进程号PID查看对应应用:ps axu | grep 进程号根据进程号PID查看对应端口:netstat -anp | grep 进程号 阅读全文
摘要:
一、表空间自动扩展的好处1.数据文件自动扩展的好处1)不会出现因为没有剩余空间可以利用到数据无法写入2)尽量减少人为的维护二、设置表空间自动扩展的方法1、查看表空间情况SQL>select tablespace_name,file_name,autoextensible from dba_data_ 阅读全文
摘要:
安装环境简介:系统版本:cantos7.4 jdk版本:1.8 mysql版本:5.7.221.下载wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz2.解压[ro 阅读全文
摘要:
目录1,查询索引状态 1.1 查询user_indexes表 1.2 查询分区索引-user_ind_partitions表 1.3 检查损坏索引2,索引重建 2.1全局索引重建 2.2 local索引重建 1,查询索引状态1.1 查询user_indexes表select status,T.* f 阅读全文
摘要:
1、查询数据库中的存储过程和函数select `name` from mysql.proc where db = 'ecc' and `type` = 'PROCEDURE';select `name` from mysql.proc where db = 'ecc' and `type` = 'F 阅读全文
摘要:
系统版本:Centos7 jdk:1.8 安装包: prometheus-2.33.4.linux-amd64.tar.gz grafana-enterprise-8.4.3.linux-amd64.tar.gz node_exporter-0.18.1.linux-amd64.tar.gz [zk 阅读全文
摘要:
1.kafka为什么用到zookeeper(1)Kafka集群通过Zookeeper来管理kafka的配置,选举leader;(2)在Consumer Group发生变化时进行rebalance(3)所有的topic与broker的对应关系都由zk维护2.kafka的哪些组件需要注册到zookeep 阅读全文
摘要:
上传必要包文件这里不做赘述。 [zhangsan@test2 ~]$ unzip instantclient-basic-linux.x64-11.2.0.4.0.zip -bash: unzip: 未找到命令[zhangsan@test2 ~]$ yum install -y unzip zip已 阅读全文