您现在的位置:首页 > 数据库
Mysql通过mysqladmin快速设置密码、快速创建数据库

Mysql通过mysqladmin快速设置密码、快速创建数据库

今天来分享两个数据库快速配置的技巧             mysqladmin命令是mysql服务器管理任务的客户端工具,它可以检查mytsql服务器的配置和当前工作状态,创建和删除数据库,创建用户和修改用户密码等操作。 通过mysqladmin一键设置Mysql的root密码,不需要进入引导模式一步一步设置密码。 mysqladmin -u root password 【root密...

 Mysql /   2022-04-20 /   2次浏览
Mysql、MariaDB数据库查看数据库大小与表大小

Mysql、MariaDB数据库查看数据库大小与表大小

1、查看所有数据库容量大小 select table_schema as '数据库', sum(table_rows) as '记录数', sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)', sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)' from information_sc...

 Mysql /   2022-04-19 /   3次浏览
Redhat7.6 Redhat7.4 手动安装Oracle11gR2数据库教程 版本11.2.0.4-非常详细

Redhat7.6 Redhat7.4 手动安装Oracle11gR2数据库教程 版本11.2.0.4-非常详细

1、安装前相关准备准备1、操作系统:rhel-server-7.6-x86_64 安装时选择安装桌面,其他选项默认。
2、设置好Hostname:
...

 Oracle /   2021-03-09 /   435次浏览
Redhat7.6 Redhat7.4安装oracle11gR数据库到84%时报错-ins_ctx.mk编译错误

Redhat7.6 Redhat7.4安装oracle11gR数据库到84%时报错-ins_ctx.mk编译错误

Redhat7.6 Redhat7.4 Centos7.2 Centos7安装oracle11gR数据库到84%时报错-ins_ctx.mk编译错误 解决方法
Error in invoking target 'install' of makefile...

 Oracle /   2021-03-08 /   36次浏览
Centos7 Redhat7 安装mysql5.7社区版本 (Yum 源方式)

Centos7 Redhat7 安装mysql5.7社区版本 (Yum 源方式)

由于Oracle收购了Mysql,现在Redhat7和Centos7 默认安装的mysql为MariaDB版本,部分应用还是需要Mysql。介绍下Mysql社区版本的安装方法。...

 Mysql /   2020-12-04 /   22次浏览
oracle数据库断电重启故障恢复过程 ORA-01507  ORA-00214  ORA-00742  ORA-00312

oracle数据库断电重启故障恢复过程 ORA-01507 ORA-00214 ORA-00742 ORA-00312

oracle 版本:rhel6.7 Linux版本: Oracle 11gR2 11.2.0.4...

 Oracle /   2020-12-04 /   10次浏览
ORA-01194: file 1 needs more recovery to be consistent  ORA-01194: must use RESETLOGS or NORESETLOGS

ORA-01194: file 1 needs more recovery to be consistent ORA-01194: must use RESETLOGS or NORESETLOGS

数据库版本:11gR2 11.2.0.4,

发现Oracle数据库无法打开,提示以下错误

ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/oradata/crmdb/system01.dbf'
...

 Oracle /   2020-12-04 /   35次浏览