当前位置:首页 > 数据库 >

文章分类:数据库

数据库 mysql数据库创建数据库创建用户授权

Liunx下登录数据库 mysql -u 用户名 -p 创建myblog用户,本地登录,口令是myblog create user ‘myblog‘@‘localhost‘ identified by ‘myblog‘; 创建数据库 myblogdb 并设置字符集为utf-8 create database myblo……

数据库 MySql存储过程参考

Mysql(9)---纪录一次实际开发过程中用到的复杂存储过程 为了尽可能的还原当时为什么需要用到存储过程,下面我写了个详细的文档,我们可以从需求文档出发来分析。 有关存储过程……

数据库 SqlServer ----- 拷贝数据表

两种方式,第一种方式只是把表中的字段进行拷贝,第二种把表中的关联关系,主键自增长全部拷贝。 1、把表中的关联关系,主键自增长全部拷贝。 选择需要拷贝的表,点击编辑器窗……

数据库 Mysql的mysqldump详解

一、导出 1.1 导出表结构及数据 mysqldump -uroot -p --set-gtid-purged=OFF database table1 table2 mysqldump.sql 1.2 只导出表结构 mysqldump -uroot -p --set-gtid-purged=OFF -d database table1 table2 mysqldump.sql 1.3 只导出数……

数据库 mysql连接数

show status like ‘%max_connections%‘ ; ##mysql最大连接数 set global max_connections = 1000 ##重新设置 show variables like ‘%max_connections%‘ ; ##查询数据库当前设置的最大连接数 show global status like ‘Max_……

数据库 【解决】image ... could not be accessed on a registry to record

【问题】 image jmdiservice:1206 could not be accessed on a registry to record its digest. Each node will access jmdiservice:1206 independently,possibly leading to different nodes running different versions of the image. 【分析】 创……

数据库 template might not exist or might not be accessible by any o

初学者在maven spring boot web项目中使用thymeleaf 模板,经常会遇到 “template might not exist or might not be accessible by any of the configured Template Resolvers”这个问题,让人很头疼。其实这个错误的描述……

数据库 "支持“xxx”上下文的模型已在数据库创建后发生更改。请考虑使用 Cod

学习Asp.Net MVC4 时,使用EF。本来正常,但是由于修改了一下Model中的一个实体类。 导致这个错误。 “支持“xxx”上下文的模型已在数据库创建后发生更改。请考虑使用 Code First 迁移更新……

数据库 MySQL 常用命令和基础语法

-- mysql 命令SHOW DATABASES; #查看目前系统中存在的数据库use database_name; #切换数据库SHOW TABLES; #显示当前数据库下面的所有可用的表SELECT * FROM table_name; #显示该表中的所有数据DESC table_name……

数据库 oracle服务器硬盘磁盘空间满了

问题描述:oracle服务器硬盘磁盘空间满了,没有空间写入数据; 解决思路: a、服务器是虚拟机还是实体机? 虚拟机,-物理机上有空间直接给它扩容,再给数据库的相关表空间添加文……