`
文章列表
/* 更改列名 */ exec sp_rename 'WebSyncTest.CreateTimev','CreateTime' --删除所有记录 truncate table tableName /* 清除日志 */ select log_reuse_wait_desc from sys.databases where name = 'lylearnnet_syn' select * from sys.databases where name = 'lylearnnet_syn' select name, log_reuse_wait_desc from ...
获取SqlServer2005表结构(字段,主键,外键,递增,描述) http://www.cnblogs.com/eflylab/archive/2008/06/23/1227838.html
oracle forall: http://blog.chinaunix.net/u/20078/showart_680158.html
Oracle 异构服务实践 http://bbs.telreading.com/thread-75182-1-1.html
http://www.phpchina.com/html/96/1296-3174.html 使用P/L SQL建表时,如果使用了关键字作为字段名,如:uid,type,date等,会提示出错无效的标识符(invalid  identifier)。在一些情况不得不使用关键字作为字段名时,就像一些系统升级时,从其它数据库改为oracle时,该什么办呢。经验证, 解决办法是使用双引号“”,如“type”. create table fgdhfgh (   id   number,   “uid” number,   ”type“ number ) ;
One 无法为数据库 'lylearnnet_syn' 中的对象 'dbo.T_PRIVINFO_HY'.'PK__T_PRIVINFO_HY__19B5BC39' 分配空间,因为 'PRIMARY' 文件组已满。请删除不需要的文件、删除文件组中的对象、将其他文件添加到文件组或为文件组中的现有文件启用自动增长,以便增加可用磁盘空间。 解决: 见附图1 Two 数据库 'lylearnnet_syn' 的事务日志已满。若要查明无法重用日志中的空间的原因,请参阅 sys.databases 中的 log_reuse_wait_desc 列。 解决: 直接清除全部数据库日志: 1:截断事务日志:  ...
jdbc 2.0提供了javax.sql.DataSource接口,它负责建立与数据库的连接,在应用程序中访问数据库时不必编写连接数据库的代码,可以直接从数据源获得数据库连接。
jsp就是个servlet;其目的是简化建立和管理动态网站的工作。 servlet 的URL映射路径:     1.精确模式匹配   /abc  以abc请求可以找到该servlet;     2.扩展名匹配   *.do  以.do结尾请求都可找到该servlet;     3.路径映射   /abc/*  以/abc/目录请求都可找到该servlet;     4.默认的servlet  ‘/’ 发送请求   
Linux命令大全: http://ss64.com/bash/ unix命令: Quick Reference: Unix Commands: http://www.washington.edu/computing/unix/unixqr.html#O What is the exact difference between a 'terminal', a 'shell', a 'tty' and a 'console'? http://unix.stackexchange.com/questions/4126/what-is-the-exact-difference-between- ...
<script language="javascript" for="window" event="onload">   EVENT   event   设置或获取脚本编写用于的事件 FOR   htmlFor   设置或获取绑定到事件脚本的对象。       可以这样理解。         <script   language="javascript"   for="window"   event="onload">     相当于     ...
  set() add() replace() 的不同: set:如果对应的key不存在,则添加;否则更新。引用既然 set 的行为表现类似与 SQL 中的Update,那么,当key已存在、更新该key的value时,该条cache的expire time是否会被重置那?答案是是的,详见: http://stackoverflow.com/questions/6066939/does-setting-a-memcached-key-that-already-exists-refresh-the-expiration-timeadd:如果对应的key不存在,则添加;否则不改变原来的value, ...
关于windows身份验证和sql server身份验证: [Microsoft][SQL Server 2000 Driver for JDBC]ResultSet can not re-read row data for column 在用JSP+sqlserver开发网站中遇到“ResultSet can not re-read row data for column 1”问题,在网上搜索得知,原来是微软公司的驱动的兼容性不太好。 有热心人总结了微软驱动的缺点: (1)如果采用jdbc-odbc驱动,那么就必须按照查询顺序来一次读取(不论有没有image或text类型) (2)如果采用 ...
深入探讨Iterator模式: http://gceclub.sun.com.cn/yuanchuang/week-14/iterator.html 关于ConcurrentModificationException: http://www.blogjava.net/EvanLiu/archive/2008/08/31/224453.html api描述: http://gceclub.sun.com.cn/Java_Docs/html/zh_CN/api/java/util/ConcurrentModificationException.html

Web Services

    博客分类:
  • J2EE
关于JAX-WS (Java API for XML-based Web Services): http://jnn.iteye.com/blog/83103
effective java http://blog.csdn.net/iamhj/archive/2009/02/06/3867023.aspx Expert one on one J2ee design and development 中文版魏海萍翻译,那叫一个垃圾,勿买 Professional Java Development with SpringFramework 黑名单之首蒋培翻译,经典名句:          P128  &qu ...
Global site tag (gtag.js) - Google Analytics