WEB开发网
开发学院数据库Oracle 使用Oracle数据库时的Web分页方法 阅读

使用Oracle数据库时的Web分页方法

 2007-05-07 12:07:51 来源:WEB开发网   
核心提示: 用以上语句,我们快速生成了一个行业产品表,使用Oracle数据库时的Web分页方法(2),其中all_objects为oracle的一个系统表(我们常常可以使用类似的方法生成测试数据),接下来,我们希望选出行业为20,属于第289页的所有产品信息,我们创建了索引,并为使用CBO分析了表

用以上语句,我们快速生成了一个行业产品表,其中all_objects为oracle的一个系统表(我们常常可以使用类似的方法生成测试数据)。接下来,我们创建了索引,并为使用CBO分析了表,分析显示该表共用去1039个数据块:rudolf@TEST902>create index t_category_pname_ind
on t (category,product_name)
2 nologging
3 tablespace indx
4 /
Index created.
rudolf@TEST902>analyze table t compute statistics
2 for table
3 for all indexes
4 for all indexed columns
5 /
Table analyzed.
rudolf@TEST902>select table_name,blocks,
  empty_blocks from user_tables where table_name = 'T';
TABLE_NAME BLOCKS EMPTY_BLOCKS
------------------------------ ---------- ------------
T1039 113

为了便于讨论,我们先来看一下传统的做法: 
rudolf@TEST902>select * from
2  ( select rownum rnm, a.* from
3 ( select * from t where category = &category_id
4 order by product_name
5 ) a
6 ) where rnm between &minrnm and &maxrnm
7

这里我们使用了三个变量,其中category_id表示用户感兴趣的行业,而minrnm,maxrnm则来模拟web程序控制分页时传入的最小、最大行号。我们希望选出行业为20,属于第289页的所有产品信息。我们猜测上述语句将按以下步骤执行:

1. 取出所有满足category=&category_id的记录;

2. 按product_name进行排序;

3. 在排序完毕的结果集中取出第&minrnm到&maxrnm记录之间的数据。 
rudolf@TEST902>set autot trace
rudolf@TEST902>/
Enter value for category_id: 20
Enter value for minrnm: 4981
Enter value for maxrnm: 5000
20 rows selected.
Execution Plan
0 SELECT STATEMENT Optimizer=FIRST_ROWS (Cost=436 Card=5263 Bytes=1094704)
10  VIEW (Cost=436 Card=5263 Bytes=1094704)
21 COUNT
32  VIEW (Cost=436 Card=5263 Bytes=1026285)
43 SORT (ORDER BY) (Cost=436 Card=5263 Bytes=1010496)
54  TABLE ACCESS (BY INDEX ROWID) OF 'T'
  (Cost=284 Card=5263 Bytes=1010496)
65 INDEX (RANGE SCAN) OF 'T_CATEGORY_PNAME_IND'
  (NON-UNIQUE) (Cost=31 C
ard=5263)
Statistics
0 recursive calls
0 db block gets
284 consistent gets
0 physical reads
0 redo size
1829 bytes sent via SQL*Net to client
514 bytes received via SQL*Net from client
3 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
20 rows processed

上一页  1 2 3 4  下一页

Tags:使用 Oracle 数据库

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接