摘要:
1. 要求将数据库中的数据直接创建到Solr索引中去。先做全部索引,然后定期做增量索引。2. 环境Solr4.4版本,Tomcat7.0版本,Oracle 11g,已经配置好Tomcat与Solr的集成,包括中文分词等。3. 实现步骤3.1 编辑solrconfig.xml文件,在合适位置增加如下代码: data-config.xml3.2 在conf目录下创建data-config.xml文件,内容如下: 注意:上面查询语句中定义的字段必须在schema.xml文件中有相关定义。在我这里,VIEW_DETAIL是一张视图,包含了三张... 阅读全文
摘要:
背景因为项目某些模块的数据结构设计没有严格按照某规范设计,所以只能从数据库中查询数据结构,需要查询的信息如下:字段名称、数据类型、是否为空、默认值、主键、外键等等。在网上搜索了查询上述信息的方法,总结如下:1. 查询表基本信息select utc.column_name,utc.data_type,utc.data_length,utc.data_precision, utc.data_Scale,utc.nullable,utc.data_default,ucc.commentsfrom user_tab_columns utc,user_col_comments uccw... 阅读全文
摘要:
wmsys.wm_concatDefinition: The Oracle PL/SQL WM_CONCAT function is used to aggregate data from a number of rows into a single row, giving a list of data associated with a specific COMMENT_BODY. In effect, it cross-tabulates a comma delimited list.Note that WM_CONCAT is undocumented and unsupported b 阅读全文