文章列表
Sybase 15 tips
- 博客分类:
- Sybase
--select next_identity
select next_identity('dbo.TblHNWSwapSuitability')
--fixing identity gap and reset "next_identity" to 1
exec sp_chgattribute 'TblHNWSwapSuitability', 'identity_burn_max', 0,'0'
--create new backup table and dump data to it from original table dynamically
drop table ...
1 Always use UTF-8 as encoding;
2 Try to set the encoding uniformly(in filter or web server side);
2.1 In tomcat6,
2.1.1 For get method, you may set encoding by adding URIEncoding cfg option in server.xml:
<Connector connectionTimeout="20000" port="8080" protocol ...
DOCTYPE 影响 CSS 处理
FF: div 设置 margin-left, margin-right 为 auto 时已经居中, IE 不行
FF: body 设置 text-align 时, div 需要设置 margin: auto(主要是 margin-left,margin-right) 方可居中
FF: 设置 padding 后, div 会增加 height 和 width, 但 IE 不会, 故需要用 !important 多设一个 height 和 width
FF: 支持 !important, IE 则忽略, 可用 !important 为 FF 特别设置样式
div ...