5 月 05 2024 By 云博小周宇 安装MySql 数据库 MySql的安装 下载地址:https://downloads.mysql.com/archives/community/ name=MySQL 5.7 Community Server 33 bas… Read More
5 月 05 2024 By 云博小周宇 CentOS7 linux下yum安装mysql5.7 数据库 文章参考(https://www.cnblogs.com/jorzy/p/8455519.html) 1.创建存放安装包的位置,并且进入该目录 命令mkdir /share … Read More
5 月 05 2024 By 云博小周宇 从原理到优化,深入浅出数据库索引 数据库 MySQL官方对索引的定义为:索引(Index)是帮助MySQL高效获取数据的数据结构。 数据库查询是数据库的最主要功能之一,我们都希望查询数据的速度能尽可能的快,因此数据库系统的设计者会从查询算法的… Read More
5 月 05 2024 By 云博小周宇 mysql版本报错 数据库 IntelliJIdea2019.3打开原项目报mysql版本报错: Error opening zip file or JAR manifest missing : /C:/Users/flycat… Read More
5 月 05 2024 By 云博小周宇 Oracle 查询表信息(字段+备注) 数据库 获取表字段: select * from user_tab_columns where Table_Name=‘用户表‘ order by column_name 获取表注释: select * fr… Read More
5 月 05 2024 By 云博小周宇 mysql-5.7.29-winx64的安装步骤 数据库 1、下载地址: https://dev.mysql.com/downloads/mysql/5.7.html 2、下载解压完成后,配置环境变量 &… Read More
5 月 05 2024 By 云博小周宇 mysql5.7 开启增强半同步复制 数据库 前提是主从异步复制环境要提前搭建好,然后再开启mysql增强半同步 环境:mysql5.7.26 主从异步复制早已部署好。 1.加载plugin插件 建议master和slave上全部执行(考虑到MH… Read More
5 月 05 2024 By 云博小周宇 SQLyog复制字段值小技巧 数据库 背景: 日常工作中,经常需要用SQLyog客户端查询数据的,例如,拷贝ID值,身份证ID值。并且以逗号或者分号,间隔。 例如我们需要逗号间隔的id值。 按照如下操作就可以了。  … Read More
5 月 05 2024 By 云博小周宇 控制台操作mysql 数据库 MYSQL控制台命令操作 一、连接MYSQL。 格式: mysql -h主机地址 -u用户名 -p用户密码 1、例1:连接到本机上的MYSQL。 首先在打开… Read More
5 月 05 2024 By 云博小周宇 C# DateTime类型和sqlserver DateTime精度不同 数据库 datetime类型的时间精度是3.33毫秒,超过该精度会进行近似到0.000,0.003,0.007 秒 微软官方文档:指明datetime类型的精度为 :千分之三秒(3.33毫秒、0.00333秒… Read More
5 月 05 2024 By 云博小周宇 MongoDB搭建教程 数据库 下载地址: https://www.mongodb.com/download-center/community 可以使用命令 wget https://fastdl.mongodb.org/linux… Read More
5 月 05 2024 By 云博小周宇 [Azure]Azure SQL Database 资料库定序 数据库 Is there a difference in database ordering between the cloud and the ground? When I was dealing with… Read More
5 月 05 2024 By 云博小周宇 MYSQL查询表信息 数据库 SELECT a.table_name 表名, a.ordinal_position 字段序号, a.COLUMN_NAME 字段名, a.DATA_TYPE 数据类型, case a.column_… Read More
5 月 05 2024 By 云博小周宇 Windows系统上安装logstash和logstash-input-jdbc 数据库 说明:本文为Windows环境下的相关安装示例,适用于需要用Logstash和Logstash-input-jdbc将数据从数据库导入到Elasticsearch中的场景。 一、前置条件 … Read More
5 月 05 2024 By 云博小周宇 sql评估已过期 数据库 官方下载的SQL Server 2008评估版默认的评估期限为180天,到达180天后则License过期失效,需要重新评估; 1.点击开始-所有程序-Mic… Read More
5 月 05 2024 By 云博小周宇 sql-lab闯关之7 数据库 LESS7知识铺垫:1. 一句话木马有多个版本的,asp php的 这里我们只用到php版本的一句话木马: <?php @eval($_POST[“crow”]);?> 其中crow是密码… Read More
5 月 05 2024 By 云博小周宇 Oracle中如何查询CLOB字段类型的内容 数据库 转自:https://www.cnblogs.com/zt007/p/7205890.html 语法:select * from table_name&nbs… Read More
5 月 05 2024 By 云博小周宇 Oracle VM VirtualBox设置代理实现linux虚拟机科学冲浪 数据库 我使用的软件如下: 虚拟机软件是Oracle VM VirtualBox 虚拟机系统是ubuntu 16.04 主机系统是win10 win10上使用科学冲浪 下面是操作步… Read More
5 月 05 2024 By 云博小周宇 Mybatis连接Oracle的配置 数据库 引用地址:https://blog.csdn.net/gkx_csdn/article/details/87854702 防止博主删除,自己留个记录,总结一下 获得oracle驱动的方法… Read More