摘要:
MongoDB Version: 2.4.7Mongodump:$ bin/mongodump -u admin -p admin -d test -o ./tmp/ connected to: 127.0.0.1:29017 assertion: 18 { code: 18, ok: 0.0, e... 阅读全文
摘要:
Mysql中文乱码以及导出为sql语句和Excel问题解决这几天基于Heritrix写了一个爬虫,用到mysql,在导入导出数据时,遇到一些乱码问题,好不容易解决了,记录一下,以备查看。一、导出数据。先说明一下自己的环境:Mac OS X 10.8.3, MySQL Community Server... 阅读全文
摘要:
1. 创建一个超级用户use admindb.createUser( { user: "adminUserName", pwd: "userPassword", roles: [ { roles: "userAdminAnyDatabase", ... 阅读全文
摘要:
mongo --eval "db.dropDatabase()"> use mydb; > db.dropDatabase();mongo localhost/db db.dropDatabase()echo "db.dropDatabase()" | mongo http://stackover... 阅读全文
摘要:
来自国外博客的一篇文章介绍了MySQL 的 read_buffer_size 参数是如何影响写缓冲和写性能。据说 read_buffer_size 参数只影响以下两种情况的写数据的性能:SELECT INTO … OUTFILE ‘fileName‘When writing to the OUTFI... 阅读全文
摘要:
相关文章:php使用Coreseek实现全文索引IntroductionMongo provides some functionality that is useful for text search and tagging.MongoDB提供了一些拥有的功能用于全文搜索与标记。Multikeys ... 阅读全文
摘要:
MySql 内存表使用内存表使用哈希散列索引把数据保存在内存中,因此具有极快的速度,适合缓存中小型数据库,但是使用上受到一些限制,以下是蓝草使用的一些感受。1、heap对所有用户的连接是可见的,这使得它非常适合做缓存。2、仅适合使用的场合。heap不允许使用xxxTEXT和xxxBLOB数据类型;只... 阅读全文
摘要:
首先要确保你的oracle和mysql连接没有问题,我的oracle10g和mysql5.2,工具是mysql-gui-tools-5.0-r17-win32.msi叫MySQL Migration Tookit 然后安装这个MySQL Migration Tookit,下载地址是http://d... 阅读全文
摘要:
step0:安装mysql在按照workbench之前,先安装mysql。指令是yum install mysql mysql-server mysql-libs mysql-server关于mysql各个包的功能是:“mysql for the client tools, mysql-server... 阅读全文
摘要:
In my case I have a fresh installed CentOS6.5 Server on which I will be installing the VNC-server so that I can access the CentOS server with GUI. You... 阅读全文