薄雾倾城

导航

2011年10月17日

oracle表空间

摘要: 1.查看表空间的使用情况SELECT upper(f.tablespace_name) "表空间名", d.tot_grootte_mb "表空间大小(M)", d.tot_grootte_mb - f.total_bytes "已使用空间(M)", to_char(round((d.tot_grootte_mb - f.total_bytes) / d.tot_grootte_mb * 100, 2), '990.99') "使用比", f.total_bytes "空闲空间(M)&qu 阅读全文

posted @ 2011-10-17 15:24 若菲 阅读(214) 评论(0) 推荐(0) 编辑

如何使用url实现数据交互

摘要: DataInputStream input = null;java.io.ByteArrayOutputStream out = null;try {byte[] xmlData = xmlString.toString().getBytes("GB2312");// 获得到位置服务的链接URL url = new URL(this.serviceUrl);URLConnection urlCon = url.openConnection();urlCon.setDoOutput(true);urlCon.setDoInput(true);urlCon.setUseCach 阅读全文

posted @ 2011-10-17 14:48 若菲 阅读(383) 评论(0) 推荐(0) 编辑