Process
- -
- database
- Object
Process -
Server -
User -
Object
Process -
database -
User -
Schema -
Object
依次是Mysql、Oracle、Db2
没做过oracle多实例,db2也是刚刚接触,浅显的理解
Mysql这种方式很初级最容易被人想到,Da...
分类:
数据库 时间:
2014-06-20 09:57:32
阅读次数:
374
svn 实现git stash类似的功能% svn diff >
WorkInProgress.txt% svn revert -R .% svn commit -m "Patched to support server
schema change"% patch -p0 -i WorkInProg...
分类:
其他好文 时间:
2014-06-12 00:32:47
阅读次数:
367
步骤一: 删除userdrop user ×× cascade说明:
删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。步骤二: 删除tablespaceDROP
TABLESPACE tablespace_name INCLUDING C...
分类:
数据库 时间:
2014-06-11 12:49:07
阅读次数:
277
1,使用count函数生成摘要
函数函数使用很容易,对于MyISAM表来说count(*)语句很快,但是对于BDB或者InnoDB表来说,尽可能要避免使用它,因为该语句要求执行完整的扫描,速度很慢,解决办法是从information_schema数据库中提取table_rows数目
与if语句搭配使...
分类:
数据库 时间:
2014-06-10 00:50:06
阅读次数:
323
就像是在Data in, data
out中解释过的,index中的每个document都有type。每个type都有自己的mapping或者schema
definition。在type中mapping定义filed,定义每个filed中的数据类型,定义ES怎么处理这个filed,mapping也...
分类:
移动开发 时间:
2014-06-06 16:32:38
阅读次数:
235
applicationContext.xml<?xmlversion="1.0"encoding="UTF-8"?>
<beansxmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http:..
分类:
编程语言 时间:
2014-06-04 12:51:48
阅读次数:
476
20140602-XML之Schema文档学习笔记 一、Schema约束 几个重要知识:
1、namespace相当于schema文件的id。Namespace是一个概念,并没有这个属性。 2、targetNamespace属性
注意:这个属性只在schema文档中出现。用来指定schema文档的n...
分类:
其他好文 时间:
2014-06-02 18:07:07
阅读次数:
228
Merge的语法如下:
MERGE [hint] INTO [schema .] table [t_alias] USING [schema .]
{ table | view | subquery } [t_alias] ON ( condition )
WHEN MATCHED THEN merge_update_clause
WHEN NOT MATCHED THEN merge_i...
分类:
数据库 时间:
2014-06-02 12:35:31
阅读次数:
283
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www...
分类:
编程语言 时间:
2014-06-01 14:14:30
阅读次数:
320
假设你有一个服务,你的用户可以搜索不同的公司,用户输入一个简单的关键字,可以返回匹配关键字的公司,但是有一天,用户要求返回的公司列表中可以显示公司跟用户的距离,这是该怎么做呢?
准备工作
在开始之前,需要先了解字段别名功能,具体可以参看这里
怎么做
1.假设我们在 schema.xml 中定义了如下索引结构:
2.我们需要定义 location...
分类:
其他好文 时间:
2014-06-01 09:45:43
阅读次数:
230