• MySQL 5.7基于GTID的主从复制

    since i've broken down the replication enviornment by "reset master;" yesterday.therefore,i'd like to reconfigure it again,there're several simple steps below: I. Master node operations: 1 1 . Check the necessary parameter is surely spedified. 2 (ro...

    2018-06-18 01:39:37

  • 程序猿数据库学习指南

    ...

    2018-06-18 01:39:38

  • 远程连接Oracle 服务器 解决Oracle查询中文乱码

    Dos方法: 依托于 目录下的文件 使用plsql developer 客户端软件进行连接 需要配置一下: 就是把Dos的客户端配置进来 然后,把服务器端的文件拷贝到你的的机器 并设置TNS_ADMIN环境变量为这个目录(不要中文 空格 符号等的目录) 这样就登陆成功了 解决中文乱码问题 修...

    2018-06-18 01:39:18

  • MYSQL 8.0.11 安装过程及 Navicat 链接时遇到的问题

    参考博客:https://blog.csdn.net/WinstonLau/article/details/78666423 我的系统和软件版本是这样的: 系统环境:win7、64位 MySQL版本:8.0.11 对版本的说明 之所以说是 MySQL5.7 及以上版本,是因为从 MySQL5.7 版本之后,其安全机制有所改变。在安装完成后,登陆 M...

    2018-06-18 01:39:23

  • mysql 5.7 线程阻塞处理

    ...

    2018-06-18 01:38:58

  • MySQL数据库 : 基本语句

    mysql -uroot -p 登陆数据库 select now(); 显示当前时间 \q 退出 show databases; 显示数据库 create database 数据库名 charset=utf8; 创建数据库 drop database 数据库名字; 删除数据库 use 数据库名 切换,使用数据库 show tables;显示数据库中的表 show create tab...

    2018-06-18 01:39:08

  • 利用MyFlash闪回丢失数据(续)

    last night,i've tested flashback by MyFlash tool,but failed,now let's do some other test with it.first of all,clear the test environment:drop the procedure and table created yesterday. 1 root@localhost:mysql3306.sock [(none)] 09 : 14 : 31 show proce...

    2018-06-18 01:38:21

  • [MYSQL][1]创建,修改,删除表

    查看有哪些数据库: SHOW DATABASES; 创建,删除数据库: CREATE DATAABASE mydb; DROP DATABASE mydb; 查看有哪些表: SHOW TABLES; 创建,删除表: CREATE TABLE test (id INT ,name VARCHAR ( 20 ),sex BOOLEAN); DROP TABLE mytb; 查看表结构: DESC TABLE mytb; S...

    2018-06-18 01:38:51

  • linux安装mysql数据库和简单配置

    ...

    2018-06-18 01:38:33

  • 执行SQL查询导致磁盘耗尽故障演示

    a fellow in IMG wechat group 2 met an error about running out of disk space when using MySQL query today,now let's mimic the situation: first,i'll create a test table and a procedure,then using the procedure to insert 1000W records into test table "...

    2018-06-18 01:37:52

2