备份和还原数据库都是在未登录的前提下进行命令操作的: 1.备份表: mysqldump -u root -p dbname table1 table2 > D:\sqlback.sql 2.备份一个或多个数据库: mysqldump -u root -p --databases db...
分类:
数据库 时间:
2014-08-24 14:11:02
阅读次数:
208
Galera is a synchronous multi-master cluster for MySQL/InnoDB databases. Some features and benefits of Galera are: Synchronous replication. Multi mast...
分类:
数据库 时间:
2014-08-22 21:02:59
阅读次数:
405
1、MySQL 5.1参考手册2、基础教程3、常用举例入下: 1 连接数据库:mysql -h主机地址 -u用户名-p用户密码 2 数据库的提示符:mysql> 3 退出数据库:exit(回车) 4 显示数据库:show databases; 5 建立数据库:create database 库名; ...
分类:
数据库 时间:
2014-08-22 12:40:16
阅读次数:
223
1基本安装
1.1在基于RHEL的系统中安装Cassandra
1.1.1必要条件
Ø YUM包管理器
Ø Root或sudo权限
Ø JRE6或者JRE7
Ø JNA(Java native Access)(生产环境需要)
1.1.2步骤
Ø 安装配置JRE(略)
Ø 添加软件包仓库到YUM的软件库
将以下内容添加进/etc/yum.repos.d/dat...
分类:
其他好文 时间:
2014-08-19 16:30:34
阅读次数:
418
1. ContentObserver ContentObserver主要是通过Uri来监测特定的Databases的表,如果该Databases表有变动则会通知更新cursor中的数据。 如果使用ContentProvider操作数据库,在ContentProvider的query()方法中会通过C...
分类:
其他好文 时间:
2014-08-18 16:06:02
阅读次数:
188
启动:net start mySql; 进入:mysql -u root -p/mysql -h localhost -u root -p databaseName; 列出数据库:show databases; 选择数据库:use databaseName; 列出表格:show tables...
分类:
数据库 时间:
2014-08-18 12:16:44
阅读次数:
293
本文对常用数据库操作及相关基本概念进行总结:MySQL和PostgreSQL对SQL的支持有所不同,大部分SQL操作还是一样的。选择要用的数据库(MySQL):use database_name;help show;显示可用的数据库列表:show databases;显示一个数据库内可用的表的列表:...
分类:
数据库 时间:
2014-08-17 18:30:42
阅读次数:
461
在mysql安装目录下的data目录中发现有几个系统目录,把my.ini文件中的datadir值设为此目录.更改后的主要配置为:[mysqld]basedir=C:/databases/mysqldatadir=D:/databases/mysql/databasedir: 为你数据库程序放置目录d...
分类:
数据库 时间:
2014-08-14 13:49:48
阅读次数:
258
QUESTION8
Yourmultitenantcontainer(CDB)containingthreepluggabledatabases(PDBs)isrunninginARCHIVELOGmode.YoufindthattheSYSAUXtablespaceiscorruptedintherootcontainer.Thestepstorecoverthetablespaceareasfollows:1.MounttheCDB.2.CloseallthePDBs.3.Openthedataba..
分类:
数据库 时间:
2014-08-13 03:50:16
阅读次数:
387
[sql] view plaincopy1、相当与mysql的showdatabases;[sql] view plaincopyselectdatnamefrompg_database;[sql] view plaincopy2、相当于mysql的showtables;[sql] view pla...
分类:
数据库 时间:
2014-08-13 01:05:14
阅读次数:
370