- 浏览: 263936 次
- 性别:
- 来自: 北京
最新评论
文章列表
区分mapping和type
理解:在同一个index中,不同type但相同名称的field,必须具有相同的mapping
而mapping定义了文档中的每一个field如何被索引和被查询到。
区别:
(1)type(类型)是索引的逻辑分区(类似tenant)。在索引中,可以定义一个或多个类型。
Type由名称和Mapping组成,type表示一类相似的document。
(2)Mapping像RDBMS中的Schema,每一个index都有一个mapping,mapping定义了索引中的每一个type和一些index相关的设置,,描述了每一个field的数据类型。
(3)type ...
ERROR | Context [/ofbizsetup] startup failed due to previous errors
INFO | No Spring WebApplicationInitializer types detected on classpath
INFO | starts initialization... (configured nodes definition n1:192.168.0.43:12587, failover nodes null)
ERROR | The session manager failed to start
org.apache ...
事实上,对广大中小企业而言,尤其是产业集群中激烈竞争的中小企业而言,它们真正的痛点是:融资难、融资贵、物流成本高、物流效率低、生产性服务业不完善(如研发、创新、设计、包装、联合采购、大额和大 ...
<security-constraint>
<web-resource-collection>
<web-resource-name>all roles access</web-resource-name>
<description></description>
<url-pattern>/jspdir/*</url-pattern>
<url-pattern>*.do</url-pattern>
</web-resource-c ...
查询某张或者某些表的整体信息:
/**first**/
select distinct a.table_name,
b.comments,
A.OWNER,
a.tablespace_name,
null as is_used
from all_tables a, all_tab_comments b
where a.table_name = b.table_name
and a.table_name like '%YOUR_TABLE_SPEC ...
【问题1】
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111)
【解决】
1、check listened port
[root@db-test ~]# netstat -tnulp|grep 3306
tcp 0 0 :::3306 :::* LISTEN 11781/mysqld
[root@db-test ~]#
...
Oracle支持的中文(汉字)排序有以下几种:
1、按照拼音排序:
select * from your_table_name t order by nlssort(t.ordered_column_name,'NLS_SORT=SCHINESE_PINYIN_M')
2、按照笔画数排序:
select * from your_table_name t order by nlssort(t.ordered_column_name,'NLS_SORT=SCHINESE_STROKE_M')
3、按照偏旁部首排序:
select * from your_table_name t orde ...
用到:document.referrer对象,如下:
if(document.referrer.indexOf("abc.html")>0){
window.location.href=document.referrer;
}
【编写于 2009-02-11】
import java.util.regex.*;
public class Test {
public static void main (String[] params) {
System.out.println("hello,can_do");
String strOriginal ="<bd></bd>efa@ade#cv<Brddd><pddd><brdd><p></p><P></P><b></b><br& ...
select a.owner,
a.table_name,
a.column_name,
a.data_type,
a.data_length,
a.data_precision,
a.data_scale,
a.nullable,
a.segment_column_id,
a.internal_column_id,
a.column_id,
a.last_analyzed,
a.num_nulls,
...
1、将以下信息另存为“.scf”的文件,即Shell Command File,比如:showDesktop.scf
[Shell]
Command=2
IconFile=explorer.exe,3
[Taskbar]
Command=ToggleDesktop
2、将1生成的文件放到目录“Quick Launch”下:如:
C:\Documents and Settings\your_name\Application Data\Microsoft\Internet Explorer\Quick Launch
3、在任务栏中选中或取消“快速启动”按钮!即重复打钩操作。
任务栏- ...
function openNewWindow(paramUrl) {
var strTitle = "newWindow"+"_"+parseInt(Math.random()*100)+1;
//alert(strTitle);
window.open(paramUrl,strTitle, 'height=600, width=800, top=100, left=100, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=no');
}//e ...
SQL> alter table can_do modify id number(39);
alter table can_do modify id number(39)
*
ERROR at line 1:
ORA-01727: numeric precision specifier is out of range (1 to 38)
SQL> alter table can_do modify name varchar2(4001);
alter table can_do modify name varc ...
硬件系统:
1、如何查看cup的状态?
# psrinfo -v
【解释】:psrinfo ===>processor information
# mpstat 可以列出多cpu负载的状态
【解释】:mpstat==>multiple state
2、如何查看内存?
# prtconf | grep 'Memory' 可以查看内存的多少.
或者:pr ...
count(*)===>表的记录数,与某个字段是否为空无关
count(column_name)===>如果当前列有空,则会剔除掉该列为空的那些行
可以参看以下实验结果:
SQL> select count(*) from table_name t where t.lvx_id is null;
COUNT(*)
----------
9
SQL> select count(t.lvx_id) from table_name t where t.lvx_id is null;
COUNT(T.LVX_ID)
---------------
...