- 浏览: 70738 次
- 性别:
- 来自: 杭州
最新评论
文章列表
v$session 表中比较常用的几个字段说明
1. sid,serial# 通过sid我们可以查询与这个session相关的各种统计信息,处理信息.a. select * from v$sesstat where sid = :sid; 查询用户相关的各种统计信息. select a.sid,a.statistic#,b.name,a.valuefrom v$sesstat a,v$statname bwhere a.statistic# = b.statistic#and a.sid = :sid;b. 查询用户相关的各种io统计信息select * from v$sess_io w ...
dbms_profiler
Click here for the paper I presented at IOUG in 2006 on Trace Analyzer.
PL/SQL developers are always trying to optimize their code to perform more efficiently. As of Oracle 8.1.5, a utility exists that assists developers with this process, dbms_profiler, one of the most under-uti ...
分区表维护的常用命令:
ALTER TABLE-- DROP -- PARTITION-- ADD |-- RENAME |-- MODIFITY |-- TRUNCATE |-- SPILT |-- MOVE |-- EXCHANGE |
分区索引的常用维护命令:
ALTER INDEX-- DROP -- PARTITION-- REBUILD |-- RENAME |-- MODIFITY |-- SPILT |-- PARALLEL-- UNUSABLE
1、ALT ...
String Aggregation Techniques
On occasion it is necessary to aggregate data from a number of rows into a single row, giving a list of data associated with a specific value. Using the SCOTT.EMP table as an example, we might want to retrieve a list of employees for each department. Below is a list of ...
GET: designed for getting information (a document, a chart, or the results from a database query).
POST:designed for posting information (a credit card number, some new chart data, or information that is to be stored in a database).
PUT: to place documents directly on the server.
...
Note: Remember that query strings (i.e. name/value pairs) get transferred in the URL of GET requests:
GET /blog/?name1=value1&name2=value2 HTTP/1.1Host: carsonified.com
and in the body of POST requests:
POST /blog/ HTTP/1.1Host: carsonified.comname1=value1&name2=value2
GET vs POST B ...
1。所用版本: 1)Eclipse 3.6.2 jdk6
2) apache-tomcat-6.0.18.zip(免安装版)
3) 插件:tomcatpluginv33.zip(支持Eclipse 3.6,tomcat 7)
2。实施过程: 1) ...
WTP(Web Tools Platform )项目在eclipse平台上进行扩展,是一个开发J2EE Web应用程序的工具集。WTP包含以下工具:
* 一个源码编辑器可以用来编辑HTML, Javascript, CSS, JSP, SQL, XML, DTD, XSD, 和WSDL。
* 一个图形编辑器用来编辑XSD与WSDL。
* J2EE项目构建器和一个J2EE向导工具。
* 一个Web服务创建向导和管理器,和WS-I 测试工具。
* 一个数据库访问,查询工具等。
WTP由两个子项目构成:WST(Web标准工具集) 与JST(J2EE标准工具集)
Servlets and JSP Pages Best Practices
Java Servlet technology and JavaServer Pages (JSP pages) are server-side technologies that have dominated the server-side Java technology market; they've become the standard way to develop commercial web applications. Java developers love these technol ...
oracle的分析函数over 及开窗函数
一:分析函数overOracle从8.1.6开始提供分析函数,分析函数用于计算基于组的某种聚合值,它和聚合函数的不同之处是对于每个组返回多行,而聚合函数对于每个组只返回一行。 下面通过几个例子来说明其应用。
1:统计某商店的营业额。
date sale 1 20 2 15 3 14 4 18 5 ...
1 前言 ------------------------------------------------------------- 在程序设计过程中,往往遇到比较两个记录集的差异。如,判断原来传入的订单资料与后来传入的订单资料之间的差异,并且将差异的数据显示给用户。 实现的方式有多 ...
java.math.BigDecimal不可变的、任意精度的有符号十进制数。BigDecimal 由任意精度的整数非标度值和32位的整数标度(scale)组成。如果为零或正数,则标度是小数点后的位数。如果为负数,则将该数的非标度值乘以10的负scale次幂。因此,BigDecimal表示的数值是(unscaledValue × 10-scale)。
与之相关的还有两个类:
java.math.MathContext: 该对象是封装上下文设置的不可变对象,它描述数字运算符的某些规则,如数据的精度,舍入方式等。
java.math.RoundingMode:这是一种枚举类型,定义了很多常用的数 ...
在java中提供了大数字的操作类,即java.math.BinInteger类和java.math.BigDecimal类。这两个类用于高精度计 算,其中BigInteger类是针对大整数的处理类,而BigDecimal类则是针对大小数的处理类。下边我们介绍BigDecimal类: BigDecimal的实现利用到了BigInteger,不同的是BigDecimal加入了小数的概念。一般的float型和Double型数据只可 以用来做科学计算或者是工程计算,由于在商业计算中,要求的数字精度比较高,所以要用到java.math.BigDecimal类,它支持任何精度的定 点数,可以用它来精确计算货 ...