Given a string S, find the longest palindromic
substring in S. You may assume that the maximum length of S is 1000, and there
exists one unique longes...
分类:
其他好文 时间:
2014-05-16 21:15:37
阅读次数:
454
定义一个存储过程,用到游标,从一个表中取值,插入到另外一个表中。drop procedure
if exists search_test;create procedure search_test(in id int,out out_min_id
varchar(200))begindeclare f...
分类:
数据库 时间:
2014-05-14 07:41:31
阅读次数:
361
(mybatis注意各个文件的映射问题)用到的t_user数据库脚本:-- 导出
mybatis 的数据库结构CREATE DATABASE IF NOT EXISTS `mybatis` /*!40100 DEFAULT CHARACTER
SET utf8 */;USE `mybatis`;--...
分类:
其他好文 时间:
2014-05-14 03:19:55
阅读次数:
396
public String BufferedReaderDemo(String path)
throws IOException...{File file=new
File(path);if(!file.exists()||file.isDirectory())throw new FileNotFo...
分类:
其他好文 时间:
2014-05-14 02:16:11
阅读次数:
199
下面是一次10GRAC增加ASM实例报错。故障之前就做了一次crs_unregisterASM的操作,随后增加ASM实例就增加不上了。欢迎大家加入ORACLE超级群:17115662免费解决各种ORACLE问题,以后BLOG将迁移到http://www.htz.pw 1,故障现象[oracle@www.htz.pworacle]$srvctladdasm-nsol1-..
分类:
其他好文 时间:
2014-05-13 04:46:01
阅读次数:
405
首先创建表:建表Sql文件CREATE DATABASE IF NOT EXISTS
`mybatis` /*!40100 DEFAULT CHARACTER SET utf8 */;USE `mybatis`;-- 导出 表
mybatis.t_user 结构CREATE TABLE IF NO....
分类:
其他好文 时间:
2014-05-11 23:56:06
阅读次数:
564
Microsoft Dynamics AX 2012R2
,今天重装了服务器.重装后,导入项目A报错:A table, Extended Data Type, Base Enum or class called
???? already exists.每次重装,AOT中的元素ID都会重新生成,可能是...
分类:
其他好文 时间:
2014-05-10 07:53:57
阅读次数:
243
目录作者整理:周海平(kider)概要...1优化的理由...21.大小写对SQL语句的影响(ORACLE)...22.尽量使用(NOT)EXISTS替代(NOT)IN这样的操作...33.在海量查询时尽量少用格式转换...44.查询海量数据是,可以使用optimizerhints(ORACLE)45.ORDERBY和GROPUBY..46.对列的操作...47.避..
分类:
数据库 时间:
2014-05-10 03:55:19
阅读次数:
635
一:mysql创建一个修改表字段的存储过程drop procedure if exists
pr_test;create procedure pr_test()begin declare var int; declare var1 int; set
var=416; set var1=420; wh...
分类:
数据库 时间:
2014-05-09 20:17:20
阅读次数:
460
? 定义子查询? 描述子查询可以解决的问题类型? 列出子查询的类型? 编写单行和多行子查询?
子查询:类型、语法和准则? 单行子查询:– 子查询中的组函数– 带有子查询的HAVING子句? 多行子查询– 使用ALL或ANY运算符?
使用EXISTS运算符? 子查询中的空值使用子查询解决问题谁的薪金高...
分类:
数据库 时间:
2014-05-09 19:34:44
阅读次数:
448