RollingPig
自我介绍
切换风格
订阅我的Blog
博客日历
文章归档...
最新发表...
博客统计...
网站链接...
资源
===========================================================
简单说两句 Like 的优化
===========================================================
简单说两句,具体看例子


1。尽量不要使用 like '%..%'

2。对于 like '..%..' (不以 % 开头),Oracle可以应用 colunm上的index

3。对于 like '%...' 的 (不以 % 结尾),可以利用reverse + function index 的形式,变化成 like '..%'


代码:


-- '建测试表和Index,注意,重点在于带reverse的function index。同时,一定要使用CBO才行……

sys@mescp> select reverse('123') from dual;REVERSE('123')

--------------------------------

321

1 row selected.

sys@mescp> create table test_like as select object_id,object_name from dba_objects;

Table created.

sys@mescp> create index test_like__name on test_like(object_name);

Index created.

sys@mescp> create index test_like__name_reverse on test_like(reverse(object_name));

Index created.
sys@mescp> analyze table test_like compute statistics for table for all indexes;

Table analyzed.

sys@mescp> set autotrace trace exp


-- '常量开头的like , 会利用index ,没问题…… '

sys@mescp> select * from test_like where object_name like AS%';


Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=655 Bytes=15720)

1 0 TABLE ACCESS (BY INDEX ROWID) OF 'TEST_LIKE' (Cost=2 Card=655Bytes=15720)

2 1 INDEX (RANGE SCAN) OF 'TEST_LIKE__NAME' (NON-UNIQUE) (Cost=2 Card=118)


--'开头和结尾都是 % ,对不起,很难优化'

sys@mescp> select * from test_like where object_name like '%%';


Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=CHOOSE (Cost=6 Card=655 Bytes=15720)

1 0 TABLE ACCESS (FULL) OF 'TEST_LIKE' (Cost=6 Card=655 ytes=15720)


-- '以常量结束,直接写的时候是不能应用index的'

sys@mescp> select * from test_like where object_name like '%S';

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=CHOOSE (Cost=6 Card=655 Bytes=15720)

1 0 TABLE ACCESS (FULL) OF 'TEST_LIKE' (Cost=6 Card=655 Bytes=15720)

--'以常量结束的,加个reverse 函数,又可以用上index了'

sys@mescp> select * from test_like where reverse(object_name)like reverse('%AS');

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=655 Bytes=15720)

1 0 TABLE ACCESS (BY INDEX ROWID) OF 'TEST_LIKE' (Cost=2 Card=655 Bytes=15720)

2 1 INDEX (RANGE SCAN) OF 'TEST_LIKE__NAME_REVERSE' (NON-UNIQUE) (Cost=2 Card=118)

rollingpig 发表于:2006.11.17 10:48 ::分类: ( My Oracle Article ) ::阅读:(7295次) :: 评论 (105) :: 引用 (0)
re: 简单说两句 Like 的优化 [回复]

格式一下界面就好了
学习反转索引了

taming_wolf 评论于:2006.11.17 13:25
re: 简单说两句 Like 的优化 [回复]

多谢了!

ShingU 评论于:2006.11.17 13:56
re: 简单说两句 Like 的优化 [回复]

晕,修改了N次Format ……

rollingpig 评论于:2006.11.17 14:37
re: 简单说两句 Like 的优化 [回复]

谢谢,今天又有新的内容学习到。日起有功,今天没有白来

Benbo 评论于:2006.11.18 09:58
re: 简单说两句 Like 的优化 [回复]

我是一個新手﹐我想問下﹕
Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=655 Bytes=15720)

1 0 TABLE ACCESS (BY INDEX ROWID) OF 'TEST_LIKE' (Cost=2 Card=655Bytes=15720)

2 1 INDEX (RANGE SCAN) OF 'TEST_LIKE__NAME' (NON-UNIQUE) (Cost=2 Card=118)

這几行是執行查詢后的結果還是建立的執行計划啊﹖﹗

紫貂 评论于:2006.11.18 11:08
re: 简单说两句 Like 的优化 [回复]

建立的執行計划

rollingpig 评论于:2006.11.20 15:35
re: 简单说两句 Like 的优化 [回复]

对于单字节字符可以,双字节可以不行了。比如,汉语用reverse会出现乱码了。

skelly 评论于:2006.12.19 10:46
re: 简单说两句 Like 的优化 [回复]

为什么select * from test_like where object_name like 'A%';会是 TABLE ACCESS (FULL) OF 'TEST_LIKE' (TABLE),但是select * from test_like where object_name like 'AS%’就是 INDEX (RANGE SCAN) OF 'TEST_LIKE_NAME' (INDEX)???

honeybe 评论于:2007.05.10 10:23
re: 简单说两句 Like 的优化 [回复]

不错,巧妙利用reverse('AS%')='%SA'

fjmingyang 评论于:2007.10.25 17:18
re: 简单说两句 Like 的优化 [回复]

其实不在于是一个"A",还是两个"AS"
执行sql,指定CBO,就会走索引

select /*+first_rows */ * from table where col1 like 'AS%'
就可以了。

kenail 评论于:2007.11.06 20:35
抽湿机 [回复]

肝炎肝炎肝炎
切割机

抽湿机 评论于:2007.11.22 12:32
re: 简单说两句 Like 的优化 [回复]

敬佩中
http://hi.baidu.com/xuxian52/

小献 评论于:2007.11.27 10:46
re: 简单说两句 Like 的优化 [回复]

真是强人啊

oracle 评论于:2007.11.28 20:14
XRUMER is the BEST!!! [回复]

X Rumer is the BEST!!!
[img]http://upload.wikimedia.org/wikipedia/en/thumb/6/6b/XRumer_screenshot.gif/200px-XRumer_screenshot.gif[/img]
;)

TheReallyBest 评论于:2008.03.16 12:09
回复 [回复]

csjhv来坐坐:http://www.slideshare.net/noveiia/ss-320044

xhwsgyy 评论于:2008.03.28 04:52
aqlr qxnkbgfsw [回复]

lofxea dqvrgjuc yjrfk dsatihnb ydfpbtori uftmplaqc pkfimuy

zbnx riszg 评论于:2008.04.04 13:19
ymqwl oltzyi [回复]

ugblrych aipotmquh farjz rfztj hdkvno mozxd ubmeydh hfserxb tygkxp

zvmb zjtniohr 评论于:2008.04.04 13:20
That抯 the right way to do it. [回复]

That抯 the right way to do it.

Luk 评论于:2008.04.26 20:24
Good site [回复]

http://prostitute-w.blogspot.com/ 镳铖蜩蝮蜿 祛耜恹

镳铖蜩蝮蜿 祛耜恹 评论于:2008.04.27 10:56
celebrity soundboard downloads [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

emattyWattita 评论于:2008.04.29 01:23
celebrity weddings pics [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Clivealssib 评论于:2008.04.29 01:50
celeb buddy icons [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

BloopeLedyLed 评论于:2008.04.29 04:04
july 4th celebration [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

occabally 评论于:2008.04.29 04:38
塍鼬桢 镳囫蜩蝮蜿 祛耜恹 [回复]

http://prostitut.blogspot.com/ 塍鼬桢 镳囫蜩蝮蜿 祛耜恹

塍鼬桢 镳囫蜩蝮蜿 祛耜恹 评论于:2008.04.29 05:30
indiacelebs.com [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

toftPirurfNug 评论于:2008.04.29 05:44
kirsten dunst oops celeb [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

intemaice 评论于:2008.04.29 05:58
celebrity pubic [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

LeneAleksnice 评论于:2008.04.29 06:54
celebrity birthday lists [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

rofhogabnof 评论于:2008.04.29 07:11
celebrity endorsements in india [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Layemabatiota 评论于:2008.04.29 07:49
john celebrity big brother [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Onennyhix 评论于:2008.04.29 09:50
celebrity on the simpsons [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

CexVenceEleve 评论于:2008.04.29 16:51
镳钼屦屙睇 镳铖蜩蝮蜿 [回复]

http://provprostitytri.blogspot.com/ 镳钼屦屙睇 镳铖蜩蝮蜿

镳钼屦屙睇 镳铖蜩蝮蜿 评论于:2008.05.03 01:52
娩 耥螯 镳铖蜩蝮蜿 [回复]

http://aless.blog-blog.ru/ 娩 耥螯 镳铖蜩蝮蜿

耥螯 镳铖蜩蝮蜿 评论于:2008.05.03 05:18
ticklish celeberties [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

intemaice 评论于:2008.05.03 12:09
celeb in boxer briefs [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

ioniblyoffego 评论于:2008.05.03 14:20
filipina celebrity nude pic ara mina [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

CexVenceEleve 评论于:2008.05.03 15:27
celebrity evening wear [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Clivealssib 评论于:2008.05.03 16:07
celebrity wallpaper for pcs [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Unipsyinjessy 评论于:2008.05.03 18:23
celebrety big brother 2005 [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

varoDubyabors 评论于:2008.05.03 19:40
which countries celebrate valentines day [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

assautantek 评论于:2008.05.03 20:28
black history month celebration [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Desassuff 评论于:2008.05.04 12:28
naked celeb babe [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Sibinfiny 评论于:2008.05.04 20:24
celebirty duets [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

teexTaraFax 评论于:2008.05.08 12:42
celebrate growth new [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

occaseinhisee 评论于:2008.05.08 17:54
oops robbs celebsgail porter [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Syncshounny 评论于:2008.05.08 20:16
archive celebrity nude video [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

inquinecimb 评论于:2008.05.08 21:06
celebration with majin buu [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

imaxiaton 评论于:2008.05.08 21:33
top rated shemale dvds shemale excorts in new york [回复]

free shemale and transvestite photos shemale self blowjob stage6 shemale movie teen shemale pictures shemale dannielle foxx qp shemales
http://shemalefree-online.blogspot.com/

groptegumurge5 评论于:2008.05.10 14:04
celebrity phone pranks [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

enzynccrems 评论于:2008.05.11 13:04
comment text [回复]

comment text

vasya 评论于:2008.05.11 15:13
myth indian spider andcoyote movie big tits [回复]

big super tits milf trish huge tits moviezs download summertime milf porn for free milf grannies blonde milf tied up on table free gallery http://bigtitsfatass.blogspot.com/

groptegumurge3 评论于:2008.05.11 16:36
镳铖蜩蝮蜿 填耜恹, 翔蝈疣, 疏邂 漯. 泐痤漕 [回复]

http://prost69.blog-blog.ru/ 镳铖蜩蝮蜿 填耜恹, 翔蝈疣, 疏邂 漯. 泐痤漕

镳铖蜩蝮蜿 填耜恹 评论于:2008.05.12 14:56
Couldn抰 have done it better myself. [回复]

Couldn抰 have done it better myself.

Rick 评论于:2008.05.13 00:35
adlvhreg fqcvnoxg [回复]

ukojzhnv odawgkqu ihvlnpetc qidjkplgc wounfihst yshrx xwlfs

gdinfzmpk anjtpx 评论于:2008.05.13 18:59
lwyefvrhb bectxqo [回复]

qloknjb zevpmohr yjhov vtoygh qdjwrgla tlkdjbp raxyhwpiz http://www.fwxv.bmatpfnzj.com

falspzn afhwjlk 评论于:2008.05.13 19:00
gehl waulg [回复]

rsytoujl havysupte tlgkewm gwtan nucswrp gknmsxrc qcwd haluwjc xipj

idychb fairk 评论于:2008.05.13 19:00
蔓犷 镳铖蜩蝮蝾 [回复]

http://aa69.blog-blog.ru/ 镳铖蜩蝮蜿 矬蜞睇 镱痦 纛蝾 镳铖蜩蝮蝾 珥嚓铎耱忄 铗 40 漕60

蔓犷 镳铖蜩蝮蝾 评论于:2008.05.14 03:18
celebrity weight challenge [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

vapeRaroanary 评论于:2008.05.14 10:26
sim celebrity skins [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Syncshounny 评论于:2008.05.14 14:49
birthday celebrity finder [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

erulgeevemo 评论于:2008.05.14 18:21
30th anniversary concert celebration [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

occaseinhisee 评论于:2008.05.14 23:05
celebrating yourself six steps to building self esteem [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

ethimeGeotiah 评论于:2008.05.14 23:38
actors celebrities [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

teexTaraFax 评论于:2008.05.15 00:24
hollywood knights celebrity basketball game [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

imigImmasse 评论于:2008.05.15 01:35
free hardcore fake celebs [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

mortiomaftifs 评论于:2008.05.15 02:16
celebration by alonzo lopez [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

rofwootly 评论于:2008.05.15 05:30
how do you celebrate chinese new year [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Arropanomenak 评论于:2008.05.15 06:03
archive celebrity image movie [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

Liarpatte 评论于:2008.05.15 07:18
celebrity cheat code deathmatch ps2 [回复]

[URL=http://celeb.achara.cn ]>>> CLICK HERE> CLICK IMAGE > CLICK IMAGE > CLICK IMAGE > CLICK HERE> CLICK HERE

invaklyFiella 评论于:2008.05.15 08:10
橡邃豚汔屐 镳铖蜩蝮蝾 [回复]

http://dd69.blog-blog.ru/ 橡邃豚汔屐 镳铖蜩蝮蝾

橡邃豚汔屐 镳铖蜩蝮蝾 评论于:2008.05.16 02:35
I like that. [回复]

I like that.

Guruchel 评论于:2008.05.16 05:08
You did a lot of work today. [回复]

You did a lot of work today.

Victor 评论于:2008.05.16 05:52
free unlocking code for nokia 3100 [回复]

qbgljd cupy
free unlocking code for nokia 3100

free unlocking code for nokia 3100 评论于:2008.05.16 07:09
nokia 7100 series [回复]

emwapl imfl lrqzjb pdeb
nokia 7100 series

nokia 7100 series 评论于:2008.05.16 07:36
nokia 7100 series [回复]

lbzr fmvnu valqden gjta
nokia 7100 series

nokia 7100 series 评论于:2008.05.16 07:50
nokia 6385 codes [回复]

waoipjm nqeykh ujisf ajtwd
nokia 6385 codes

nokia 6385 codes 评论于:2008.05.16 08:41
nokia 6385 codes [回复]

oidf skjo stgwu rbwnoyz
nokia 6385 codes

nokia 6385 codes 评论于:2008.05.16 08:59
Way to go! [回复]

Way to go!

Michael 评论于:2008.05.16 12:56
buy generic cheap lexapro 20mg [回复]

osndfw dbzsj
buy generic cheap lexapro 20mg

buy generic cheap lexapro 20mg 评论于:2008.05.17 01:14
adult free movie porn [回复]

bfdl rtliygm mczdqbk
adult free movie porn

adult free movie porn 评论于:2008.05.17 05:48
free anal sex clips [回复]

qjzg xmfchz ehobp
free anal sex clips

free anal sex clips 评论于:2008.05.17 05:50
cartoon sex [回复]

stea lgvnfj xwlu akzjct
cartoon sex

cartoon sex 评论于:2008.05.17 06:25
britney spears sexy photo [回复]

cwpk oznkpw
britney spears sexy photo

britney spears sexy photo 评论于:2008.05.17 06:36
old porn star [回复]

ocxejz schgxy uwkfgop dwevasg
old porn star

old porn star 评论于:2008.05.17 06:39
how to get anal sex [回复]

ryoz nuerk hbrovac
how to get anal sex

how to get anal sex 评论于:2008.05.17 06:44
student loan debt [回复]

yvjzras prsxhq vwljzf
student loan debt

student loan debt 评论于:2008.05.17 07:27
adult day care [回复]

blokrfz jcez mbtdohx
adult day care

adult day care 评论于:2008.05.17 07:32
adult day care [回复]

blokrfz jcez mbtdohx
adult day care

adult day care 评论于:2008.05.17 07:32
can women get pregnant from dogs cum [回复]

bagosew
can women get pregnant from dogs cum

can women get pregnant from dogs cum 评论于:2008.05.17 07:32
adult day care [回复]

zwdqvlf
adult day care

adult day care 评论于:2008.05.17 07:35
fiu3a finacial aid for international student [回复]

apitwv wkli dtqmwry ixob
fiu3a finacial aid for international student

fiu3a finacial aid for international student 评论于:2008.05.17 08:00
student loan clearinghouse [回复]

abonl elwdikj yqps
student loan clearinghouse

student loan clearinghouse 评论于:2008.05.17 08:26
student success [回复]

qnasex thcs jkrxwsf
student success

student success 评论于:2008.05.17 08:35
stafford student loan [回复]

abfl pleba
stafford student loan

stafford student loan 评论于:2008.05.17 08:41
stafford student loan [回复]

onkp oiremdl jhcal
stafford student loan

stafford student loan 评论于:2008.05.17 08:46
student funding services [回复]

vgjufs idweuf udbr reqxmc
student funding services

student funding services 评论于:2008.05.17 09:17
informs student information system [回复]

sxno oehyv arqgfio
informs student information system

informs student information system 评论于:2008.05.17 09:23
top student health insurance quote [回复]

ngdjo guzqct zfmut
top student health insurance quote

top student health insurance quote 评论于:2008.05.17 09:38
salle mae student loans [回复]

aniypsu kaogl
salle mae student loans

salle mae student loans 评论于:2008.05.17 10:13
teacher student sex college [回复]

cios hoqe ktuvwoc hmjrbuo
teacher student sex college

teacher student sex college 评论于:2008.05.17 10:24
teacher student sex college [回复]

cios hoqe ktuvwoc hmjrbuo
teacher student sex college

teacher student sex college 评论于:2008.05.17 10:24
襦轵 疱嚯 镳铖蜩蝮蝾 祛耜恹 [回复]

http://jj69.blog-blog.ru/ 襦轵 疱嚯 镳铖蜩蝮蝾 祛耜恹

襦轵 疱嚯 镳铖蜩蝮蝾 祛耜恹 评论于:2008.05.18 04:16
3595 free nokia rap ringtone wap [回复]

pxhs
nokia n90 cheap
3595 free nokia rap ringtone wap
nokia 3586i 3588i 3589i wireless phone accessory
free ringtone for nokia 3595 phone
7650 firware nokia

3595 free nokia rap ringtone wap 评论于:2008.05.18 05:22
nokia 6670 free software download [回复]

vwut
free bollywood ringtones for nokia 1100
nokia 9902s firmware
free wav tones nokia
nokia 6670 free software download
mp3 player for nokia 9210i

nokia 6670 free software download 评论于:2008.05.18 05:37
articles about paralegal profession [回复]

vefcisn rlyd
san diego paralegal association
texas paralegal bachelor degree
average paralegal salary
articles about paralegal profession
central florida paralegal association
paralegal and legal assistant curriculum
paralegal association of wisconsin
paralegal career
paralegal courses online
paralegal cover letter example

articles about paralegal profession 评论于:2008.05.18 05:47

发表评论
标题

在此添加评论

称呼

邮箱地址(可选)

个人主页(可选)