本文参考至:spring-framework-reference.pdf的7.3 章节【Schema-based AOP support】 If you are unable to use Java 5, or simply prefer an XML-based format, then Spr....
分类:
其他好文 时间:
2015-01-27 08:09:06
阅读次数:
135
本来要写一个文档,中间用程序判断某列是否存在,不存在的话则添加,存在就不处理直接显示一个结果就可以,写的程序如下:if exists ( select * from information_schema.columns where table_name = "flow_process" and column_name ="X_test2" AND table_schema = 'TD_OA' ...
分类:
数据库 时间:
2015-01-26 19:24:16
阅读次数:
163
<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/sche..
分类:
系统相关 时间:
2015-01-26 17:24:27
阅读次数:
165
查看表的最后mysql修改时间 SELECT TABLE_NAME,UPDATE_TIME FROM information_schema.tables where TABLE_SCHEMA='database_name'; 通过查看数据库中表的最后更新时间。
分类:
数据库 时间:
2015-01-26 16:38:33
阅读次数:
337
功能:判断表中是否存在某字段,若不存在,则新增该字段语句:IF NOT EXIST (SELECT 1 FROM [DATABASE].SYS.SYSCOLUMNS WHERE ID=OBJECT_ID([DATABASE].[SCHEMA].[TABLENAME]) AND NAME='COLUM...
分类:
数据库 时间:
2015-01-26 16:32:17
阅读次数:
204
1.oracle数据库中删除用户有两种命令,一种是 drop user xxx;另外一个种是drop user xxx cascade;
2.官方的说明如下:
Dropping a Database User: Example If user Sidney's schema contains no objects, then you can drop sidney by issuing...
分类:
其他好文 时间:
2015-01-26 13:38:44
阅读次数:
114
DimProductDimSubcategoryDimcategoryproductpksubcategorypkcategorypkskusubcategoryNamecategoryNameproductNamecategorypksubcategorypkSnow flake schema ....
分类:
其他好文 时间:
2015-01-26 13:35:54
阅读次数:
82
oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0oracle.install.option=INSTALL_DB_AND_CONFIGORACLE_HOSTNAME=...
分类:
数据库 时间:
2015-01-26 13:33:46
阅读次数:
197
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0....
分类:
编程语言 时间:
2015-01-26 12:04:53
阅读次数:
665
Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd).关于这个错误,导致的原因可能是一种可能是之前用的Spring版本,和现在用的不同对于Eclipse编译...
分类:
编程语言 时间:
2015-01-26 11:45:11
阅读次数:
157