摘要:
Oracle创建索引;查询索引 第一种命令创建 1、创建索引 create index 索引名 on 表名(列名); 2、删除索引 drop index 索引名; 3、创建组合索引 create index 索引名 on 表名(列名1,列名2); 4.查看目标表中已添加的索引 --在数据库中查找表名 阅读全文
摘要:
javax.xml.parsers.FactoryConfigurationError: Provider for class javax.xml.parsers.DocumentBuilderFactory cannot be created 解决方案如下: 原因就是xml-apis包与dom4j 阅读全文