mongodb由C++写就,其名字来自humongous这个单词的中间部分,从名字可见其野心所在就是海量数据的处理。关于它的一个最简洁描述为:scalable, high-performance, open source, schema-free, document-oriented databas...
分类:
数据库 时间:
2015-01-14 19:43:31
阅读次数:
308
===mongodb的基本操作命令=================DDL操作===========================================================================================创建架构:useSchema;在Schema中创建一个对象即可db.createCollection("CollectionName")。相当于createdatabaseDBName;创建一..
分类:
数据库 时间:
2015-01-12 19:27:04
阅读次数:
183
web.xml文件是用来初始化配置信息:比如welcome页面、servlet、servlet-mapping、filter、listener、启动加载级别等。当你的web工程没用到这些时,你可以不用web.xml文件来配置你的Application。
每个xml文件都有定义它书写规则的Schema文件,也就是说javaEE的定义web.xml所对应的xml Schema文件中定义了多少种标...
分类:
移动开发 时间:
2015-01-12 16:36:52
阅读次数:
131
Introduction to Mondrian OLAP schemabyYogaraj Khanalon December 4th, 2011IntroductionThis article demonstrates how you can design Mondrian OLAP Schema...
分类:
其他好文 时间:
2015-01-12 16:11:05
阅读次数:
386
MYSQL查看和新增表分区1、查看表分区SELECT partition_name part, partition_expression expr, partition_description descr, FROM_DAYS(partition_description) lessthan_sendtime, table_rows FROM INFORMATION_SCHEMA...
分类:
数据库 时间:
2015-01-12 14:42:26
阅读次数:
224
1.根据字段名,查找相关表--INFORMATION_SCHEMA.COLUMNSSELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME='字段名' AND TABLE_CATALOG='DbName'2.根据存储过程名查找其源码,输出格...
分类:
数据库 时间:
2015-01-12 14:34:44
阅读次数:
189
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.spri...
分类:
编程语言 时间:
2015-01-12 09:22:41
阅读次数:
248
1. Level 1.0Database Schema:a. UserUserIDNameAge1Jason252Michael26b. FriendshipFriendshipIDSourceIDTargetID112221c. NewsNewsIDAuthorIDContentTimestamp...
分类:
其他好文 时间:
2015-01-10 15:11:38
阅读次数:
175
1:查询数据库dbName有多少张表
select count(*) from information_schema.tables where table_schema='dbName’;
2:根据某个字段合并表
select id,name,sum(operate) from test group by name;
执行结果:...
分类:
数据库 时间:
2015-01-10 01:26:07
阅读次数:
185
查询所有数据库占用磁盘空间大小的SQL语句: 复制代码代码如下: select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size, concat(truncate(sum(index_l.....
分类:
其他好文 时间:
2015-01-09 19:16:24
阅读次数:
183