`
文章列表

常用Oracle SQL

    博客分类:
  • DB
1. 查询表名及表空间名称 select table_name,tablespace_name from user_tables;  

Oracle备份

    博客分类:
  • DB
备份 #>su - oracle$>export NLS_LANG=american_america.ZHS16GBK$>exp owner=数据表拥有者用户名 file=文件名 导入 #>su - oracle$>export NLS_LANG=american_america.ZHS16GBK$>imp fromuser=导出时数据表拥有者用户名 touser=用户名 file=文件名  
1. 设置页面显示总行数   1) 查看目前的pagesize,默认是14: show pagesize;   2) 将pagesize设置好100,则可以一次显示够多行记录了: set pagesize 100;     2. 设置行的宽度   1) 查看目前的linesize,默认是80: show linesize;   2) 设置成100或者更宽都可以: set linesize 100;    
在提示符 SQL> 下依次键入: SET NEWPAGE 0 SET SPACE 0 SET LINESIZE 80 SET PAGESIZE 0 SET ECHO OFF SET FEEDBACK OFF SET VERIFY OFF SET HEADING OFF SET MARKUP HTML OFF SPOOL OFF set markup html on; spool /path/abc.html select table_name,tablespace_name from user_tables; --SQL语句 spool off; ...
源代码统计精灵(SourceCounter 当前版本:V2.1.22.4)   简单易用,支持多种代码语言,统计迅速、准确,还能导出统计的结果。   运行界面截图如下:
---------------------------------------------------------------------------------------------- 转自:http://www.diybl.com/course/webjsh/osgl/20071118/86487.html ---------------------------------------------------------------------------------------------- 我使用的版本: Tomcat 5 ...
1. Spring Security 参考文档(中文翻译版): (Spring Security Version: 2.0.x) http://www.family168.com/tutorial/springsecurity/html/springsecurity.html   2. Spring Security 安全权限管理手册: http://www.family168.com/oa/springsecurity/html/index.html    
----------------------------------------------------------------------- 转自: http://fanyang219.iteye.com/blog/186968 -----------------------------------------------------------------------   package linenum; import java.awt.*; import java.awt.event.*; import java.io.*; import java.text.*; i ...

http上传文件

    博客分类:
  • Java
----------------------------------------------------------------------- 参考: http://yefeng.iteye.com/blog/315847 http://fishermen.iteye.com/blog/24107 -----------------------------------------------------------------------   J2EE的开发变得越来越便捷,很多的jar可以引入,但有很多种场合(比如J2ME)还是需要比较原始的coding。     待续...
---------------------------------------------------------------------------------------------------------- 转自: http://blog.csdn.net/xxxx1243/archive/2009/03/30/4037439.aspx ----------------------------------------------------------------------------------------------------------   commons-fileupl ...
----------------------------------------------------------------------------- Eclipse版本:(2010年之前)eclipse-jee-ganymede Version: 3.4.0Build id: I20080617-2000 (2010-2011年)eclipse-jee-Helios Version: 3.6 Build id: 20100917-0705   (2012-05)Eclipse for RCP and RAP Developers   Version: Indigo S ...
---------------------------------------------------------------------------------------------------------- 参考: http://www.iteye.com/topic/193137 http://www.iteye.com/problems/3692 ----------------------------------------------------------------------------------------------------------   何为交 ...
jQuery qTip   1个漂亮的提示插件。   主页: http://craigsworks.com/projects/qtip  (当前最新版本: 1.0.0-rc3)   -----------------------------------------------------------------------   用法1:     <script type="text/javascript"> $(document).ready(function() { $('ul.subindex li a[title] ...
参考: http://www.bitsun.com/documents/gittutorcn.htm   1. Git 是什么 Git 是一个版本控制工具,是用 Linux 内核开发的版本控制工具。   2. Git 与其他版本控制的最大差别 与常用的版本控制工具 CVS, Subversion 相比,Git 采用了分布式版本库的方式,不必服务器端软件支持,使源代码的发布和交流极其方便。   简单场景举例:当我们周末在家进行了代码修改后,如果用 SVN,SVN 的服务器在公司,此时在家便无法 commit,而使用 Git 则可以 commit。   3. Git 的优点 1 ...
-----------------------------------------------------------------  参考: http://freecode.iteye.com/blog/206628 -----------------------------------------------------------------   1、下载WinXP环境Git软件msysgit :http://code.google.com/p/msysgit/downloads/list         注:msysgit是windows环境下使用git的基础,安装 ...
Global site tag (gtag.js) - Google Analytics