摘要:
查看表空间select * from user_tablespaceswhere table_name = 'TableName'查看表属主select Owner from all_tab_columns where table_name = 'TableName'附录:Atablespaceis...
阅读全文
posted @ 2014-05-22 16:28
一天不进步,就是退步
阅读(3220)
推荐(0)
摘要:
linux shell执行有两种方式shell脚本以#!/bin/bash开头,执行shell时先检查首行,在内部以下列方式执行:$/bin/bash script.sh1. 使用sh执行。 $sh script.sh #脚本位于当前目录下或者 $sh /home/path/script.sh #使...
阅读全文
posted @ 2014-05-22 10:21
一天不进步,就是退步
阅读(483)
推荐(0)
摘要:
reference from:http://www.programcreek.com/2013/10/top-10-questions-about-java-exceptions/This article summarizes the top 10 frequently asked question...
阅读全文
posted @ 2014-05-21 17:46
一天不进步,就是退步
阅读(391)
推荐(0)
摘要:
In bash shell, when you use a dollar sign followed by a variable name, shell expands the variable with its value. This feature of shell is called para...
阅读全文
posted @ 2014-05-20 22:06
一天不进步,就是退步
阅读(855)
推荐(0)
摘要:
OAuth是一个关于授权(authorization)的开放网络标准,在全世界得到广泛应用,目前的版本是2.0版。本文对OAuth 2.0的设计思路和运行流程,做一个简明通俗的解释,主要参考材料为RFC 6749。一、应用场景为了理解OAuth的适用场合,让我举一个假设的例子。有一个"云冲印"的网站...
阅读全文
posted @ 2014-05-20 21:45
一天不进步,就是退步
阅读(457)
推荐(0)
摘要:
pde使用pl/sqldeveloper的tools->importtables->pl/sqldeveloper来导入
阅读全文
posted @ 2014-05-20 17:55
一天不进步,就是退步
阅读(19406)
推荐(0)
摘要:
Using Sessions and Session PersistenceThe following sections describe how to set up and use sessions and session persistence:Overview of HTTP Sessions...
阅读全文
posted @ 2014-05-20 14:44
一天不进步,就是退步
阅读(1304)
推荐(0)
摘要:
What is Build Profile?ABuild profileis a set of configuration values which can be used to set or override default values of Maven build. Using a build...
阅读全文
posted @ 2014-05-19 17:53
一天不进步,就是退步
阅读(2695)
推荐(0)
摘要:
有的jar通过pom配置文件不能下载,比如oracle的jdbc连接jar就是,这个时候需要通过mvn的安装命令进行手动安装jar。命令是:mvn install:install-file -Dfile=C:\软件\sqldeveloper\jdbc\lib\ojdbc6.jar -DgroupId...
阅读全文
posted @ 2014-05-19 17:43
一天不进步,就是退步
阅读(2611)
推荐(0)
摘要:
1. ArrayList概述: ArrayList是List接口的可变数组的实现。实现了所有可选列表操作,并允许包括 null 在内的所有元素。除了实现 List 接口外,此类还提供一些方法来操作内部用来存储列表的数组的大小。 每个ArrayList实例都有一个容量,该容量是指用来存储列表元素的数组...
阅读全文
posted @ 2014-05-19 17:21
一天不进步,就是退步
阅读(233)
推荐(0)