- 浏览: 110531 次
- 性别:
- 来自: 山东
最新评论
-
daoyongyu:
好,验证通过!
jquery validate手动调用 校验 -
握着橄榄枝的人:
我有两个提交按钮怎么判断一个提交按钮验证一个提交按钮不验证。
jquery validate手动调用 校验 -
zhaoshijie:
请问 ldap下 复杂的目录结构如何新增呢?比如:新增一个 ...
使用Spring的LdapTemplate进行LDAP操作 -
sunhao_java:
[align=right][color=red][list][ ...
Transaction rolled back because it has been marked as rollback-only异常解决 -
haojiejie:
var date1="2009-12-2 00:0 ...
JS比较日期大小
文章列表
/**
解决IE 6不支持 fixed
IE6 hack
*/
* html,html body{
background-image: url("about:blank");
background-attachment: fixed;
}
* html #menu {
position: absolute;
bottom: auto;
...
Spring 源码分析实用工具Assert
- 博客分类:
- Spring
/*
* Copyright 2002-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LI ...
/*
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LI ...
1.查看所有表空间使用情况
select
b.file_id 文件ID号,
b.tablespace_name 表空间名,
b.bytes/1024/1024||'M'字节数,
(b.bytes-sum(nvl(a.bytes,0)))/1024/1024||'M' 已使用,
sum(nvl(a.bytes,0))/1024/1024||'M' 剩余空间,
100 - sum(nvl(a.bytes,0))/(b.bytes)*100 占用百分比
from dba_free_space a,dba_data_files b
where a.file_id= ...
项目中经常需要将AD域中的组织架构数据同步到系统中,这里就需要访问AD并查询出对应的组织单元和用户信息,AD在进行查询的时候有数量的限制,缺省情况下AD只允许一次性查询1000条数据,这就意味着如果你要一次性查询1000以上的数据,则AD只会返回1000条数据给你。
解决办法是:修改查询数量限制。具体步骤如下:
1. 在“开始”-〉“运行”-〉输入:“ ntdsutil”,回车;
2. 输入:“ldap policies”,回车;
3. 输入:“connections”,回车;
4. 输入:“connect to domain 当前域名”在中 ...
<input type="button" class="otterbtn" value="关闭" onclick="window.opener=null;window.open('','_self');window.close();"/>
<script type="text/javascript">
$(document).ready(function() {
$(".frame tr").mouseover(function() {
if ($(this).index() > 0) {
$(this).addClass("over");
}
...
首先在导出数据的表结构sql,, 修改sql中的表的 表空间,执行后再导入数据
imp hxjj/hxjj@orcl full=y file=d:\datanewsmgnt.dmp ignore=y ignore=y
SELECT LEVEL + DATE '&starDate' - 1 dateFlag
FROM dual
CONNECT BY LEVEL < DATE '&endDate' - DATE '&starDate' + 2;
在oracle生成时间列表,从starDate' 到starDate' 时间列表。
JQuery操作表(table)
- 博客分类:
- 杂项
一.数据准备
<table id="table1">
<tr><th>文章标题</th><th>文章分类</th><th>发布时间</th><th>操作</th></tr>
<tr><td>测试</td><td>测试</td><td>测试</td><td>测试</td></tr>
<tr> ...
判断是否是基本类型
/**
* Check if the given type represents a "simple" property:
* a primitive, a String or other CharSequence, a Number, a Date,
* a URI, a URL, a Locale, a Class, or a corresponding array.
* <p>Used to determine properties to check for a "simple" depen ...
原来是这样设置的:
<tx:attributes>
<tx:method name="*" read-only="true"/>
</tx:attributes>
发现selectA调用selectB,如果selectB抛出Exception,selectA中捕获Exception但是并不继续向外抛出,最后会出现错误。
Transaction rolled back because it has been marked a ...
在B1中输入=COUNTIF(A$1:A$826,A5),双击填充到底,然后对B列筛选数据就行了。
Flash Builder 安装之后myeclipse 会被汉化,用着非常不爽,恢复英文的办法:
在myeclipse.ini 最后加上 -Duser.language=en,就可以了。
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
& ...