- 浏览: 10857 次
- 性别:
- 来自: 深圳
最新评论
文章列表
asdasdasdasd
- 博客分类:
- a
asdasdadasdasd
github:
hujing101
hujing101@tom.com
oracle删除Bin开头的表
- 博客分类:
- 数据库
删除Bin开头的表,即已经DROP但存在于回收站中的表:
-->
查询所有此类表SQL> SELECT * FROM RECYCLEBIN WHERE TYPE='TABLE';
删除回收站中所有的表SQL> PURGE RECYCLEBIN;
删除指定的表SQL> PURGE TABLE table_name;
闪回被删除的表SQL> FLASHBACK TABLE table_name TO BEFORE DROP;
-->
当然,可以在的DROP表时不产生Bin型表SQL> DROP TABLE table_name PURGE;
http://java.net/projects/weblogic-examples/sources/weblogic-12c-user-examples/show/jeffrey.west/coherence-web-examples/coherence-web-session-sharing?rev=151
https://svn.java.net/svn/weblogic-examples~weblogic-12c-user-examples
weblogic 11g coherence--->google
http://docs.oracle.com/cd/E18686_01/ ...
oracle coherence
- 博客分类:
- code
https://blogs.oracle.com/jamesbayer/entry/coherence_web_with_weblogic_server
http://www.blogjava.net/stone2083/archive/2010/02/26/314009.html
断文件编码
import java.io.File;
import java.nio.charset.Charset;
import info.monitorenter.cpdetector.io.CodepageDetectorProxy;
import info.monitorenter.cpdetector.io.JChardetFacade;
public class Test
{
public static void main(String[] args)
{
CodepageDetectorProxy detector ...