1. Oracle安装完成后的初始口令?
internal/oracle
sys/change_on_install
system/manager
scott/tiger
sysman/oem_temp
2. ORACLE9IAS WEB CACHE的初始默认用户和密码?
administrator/administrator
3. oracle 8.0.5怎幺创建数据库?
用orainst。如果有motif界面,可以用orainst /m
4. oracle 8.1.7怎幺创建数据库?
dbassist
5. oracle 9i 怎幺创建数据库?
dbca
6. oracle中的裸设备指的是什幺?
裸设备就是绕过文件系统直接访问的储存空间
7. oracle如何区分 64-bit/32bit 版本???
$ sqlplus '/ AS SYSDBA'
SQL*Plus: Release 9.0.1.0.0 - Production on Mon Jul 14 17:01:09 2003
(c) Copyright 2001 Oracle Corporation. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.0.1.0.0 - Production
With the Partitioning option
JServer Release 9.0.1.0.0 - Production
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle9i Enterprise Edition Release 9.0.1.0.0 - Production
PL/SQL Release 9.0.1.0.0 - Production
CORE 9.0.1.0.0 Production
TNS for Solaris: Version 9.0.1.0.0 - Production
NLSRTL Version 9.0.1.0.0 - Production
SQL>
8. SVRMGR什幺意思?
svrmgrl,Server Manager.
9i下没有,已经改为用SQLPLUS了
sqlplus /nolog
变为归档日志型的
9. 请问如何分辨某个用户是从哪台机器登陆ORACLE的?
SELECT machine , terminal FROM V$SESSION;
10. 用什幺语句查询字段呢?
desc table_name 可以查询表的结构
select field_name,... from ... 可以查询字段的值
select * from all_tables where table_name like '%'
select * from all_tab_columns where table_name='??'
11. 怎样得到触发器、过程、函数的创建脚本?
desc user_source
user_triggers
12. 怎样计算一个表占用的空间的大小?
select owner,table_name,
NUM_ROWS,
BLOCKS*AAA/1024/1024 "Size M",
EMPTY_BLOCKS,
LAST_ANALYZED
from dba_tables
where table_name='XXX';
Here: AAA is the value of db_block_size ;
XXX is the table name you want to check
13. 如何查看最大会话数?
SELECT * FROM V$PARAMETER WHERE NAME LIKE 'proc%';
SQL>
SQL> show parameter processes
NAME TYPE VALUE
------------------------------------ ------- ------------------------------
aq_tm_processes integer 1
db_writer_processes integer 1
job_queue_processes integer 4
log_archive_max_processes integer 1
processes integer 200
这里为200个用户。
select * from v$license;
其中sessions_highwater纪录曾经到达的最大会话数
14. 如何查看系统被锁的事务时间?
select * from v$locked_object ;
15. 如何以archivelog的方式运行oracle。
init.ora
log_archive_start = true
RESTART DATABASE
16. 怎幺获取有哪些用户在使用数据库
select username from v$session;
17. 数据表中的字段最大数是多少?
表或视图中的最大列数为 1000
18. 怎样查得数据库的SID ?
select name from v$database;
也可以直接查看 init.ora文件
19. 如何在Oracle服务器上通过SQLPLUS查看本机IP地址 ?
select sys_context('userenv','ip_address') from dual;
如果是登陆本机数据库,只能返回127.0.0.1,呵呵
20. unix 下怎幺调整数据库的时间?
su -root
date -u 08010000
21. 在ORACLE TABLE中如何抓取MEMO类型字段为空的资料记录?
select remark from oms_flowrec where trim(' ' from remark) is not null ;
22. 如何用BBB表的资料去更新AAA表的资料(有关联的字段)
UPDATE AAA SET BNS_SNM=(SELECT BNS_SNM FROM BBB WHERE AAA.DPT_NO=BBB.DPT_NO) WHERE BBB.DPT_NO IS NOT NULL;
23. P4计算机安装方法
将SYMCJIT.DLL改为SYSMCJIT.OLD
24. 何查询SERVER是不是OPS?
SELECT * FROM V$OPTION;
如果PARALLEL SERVER=TRUE则有OPS能
25. 何查询每个用户的权限?
SELECT * FROM DBA_SYS_PRIVS;
26. 如何将表移动表空间?
ALTER TABLE TABLE_NAME MOVE TABLESPACE_NAME;
27. 如何将索引移动表空间?
ALTER INDEX INDEX_NAME REBUILD TABLESPACE TABLESPACE_NAME;
28. 在LINUX,UNIX下如何激活DBA STUDIO?
OEMAPP DBASTUDIO
29. 查询锁的状况的对象有?
V$LOCK, V$LOCKED_OBJECT, V$SESSION, V$SQLAREA, V$PROCESS ;
...
...
152. 如何监控 SGA 中共享缓存区的命中率,应该小于1% ?
select sum(pins) "Total Pins", sum(reloads) "Total Reloads",
sum(reloads)/sum(pins) *100 libcache
from v$librarycache;
select sum(pinhits-reloads)/sum(pins) "hit radio",sum(reloads)/sum(pins) "reload percent"
from v$librarycache;
153. 如何显示所有数据库对象的类别和大小?
select count(name) num_instances ,type ,sum(source_size) source_size ,
sum(parsed_size) parsed_size ,sum(code_size) code_size ,sum(error_size) error_size,
sum(source_size) sum(parsed_size) sum(code_size) sum(error_size) size_required
from dba_object_size
group by type order by 2;
154. 监控 SGA 中重做日志缓存区的命中率,应该小于1%
SELECT name, gets, misses, immediate_gets, immediate_misses,
Decode(gets,0,0,misses/gets*100) ratio1,
Decode(immediate_gets immediate_misses,0,0,
immediate_misses/(immediate_gets immediate_misses)*100) ratio2
FROM v$latch WHERE name IN ('redo allocation', 'redo copy');
155. 监控内存和硬盘的排序比率,最好使它小于 .10,增加 sort_area_size
SELECT name, value FROM v$sysstat WHERE name IN ('sorts (memory)', 'sorts(disk)');
156. 如何监控当前数据库谁在运行什幺SQL语句?
SELECT osuser, username, sql_text from v$session a, v$sqltext b
where a.sql_address =b.address order by address, piece;
157. 如何监控字典缓冲区?
SELECT (SUM(PINS - RELOADS)) / SUM(PINS) "LIB CACHE" FROM V$LIBRARYCACHE;
SELECT (SUM(GETS - GETMISSES - USAGE - FIXED)) / SUM(GETS) "ROW CACHE" FROM V$ROWCACHE;
SELECT SUM(PINS) "EXECUTIONS", SUM(RELOADS) "CACHE MISSES WHILE EXECUTING" FROM V$LIBRARYCACHE;
后者除以前者,此比率小于1%,接近0%为好。
SELECT SUM(GETS) "DICTIONARY GETS",SUM(GETMISSES) "DICTIONARY CACHE GET MISSES"
FROM V$ROWCACHE
158. 监控 MTS
select busy/(busy idle) "shared servers busy" from v$dispatcher;
此值大于0.5时,参数需加大
select sum(wait)/sum(totalq) "dispatcher waits" from v$queue where type='dispatcher';
select count(*) from v$dispatcher;
select servers_highwater from v$mts;
servers_highwater接近mts_max_servers时,参数需加大
159. 如何知道当前用户的ID号?
SQL>SHOW USER;
OR
SQL>select user from dual;
160. 如何查看碎片程度高的表?
SELECT segment_name table_name , COUNT(*) extents
FROM dba_segments WHERE owner NOT IN ('SYS', 'SYSTEM') GROUP BY segment_name
HAVING COUNT(*) = (SELECT MAX( COUNT(*) ) FROM dba_segments GROUP BY segment_name);
162. 如何知道表在表空间中的存储情况?
select segment_name,sum(bytes),count(*) ext_quan from dba_extents where
tablespace_name='&tablespace_name' and segment_type='TABLE' group by tablespace_name,segment_name;
163. 如何知道索引在表空间中的存储情况?
select segment_name,count(*) from dba_extents where segment_type='INDEX' and owner='&owner'
group by segment_name;
164、如何知道使用CPU多的用户session?
11是cpu used by this session
select a.sid,spid,status,substr(a.program,1,40) prog,a.terminal,osuser,value/60/100 value
from v$session a,v$process b,v$sesstat c
where c.statistic#=11 and c.sid=a.sid and a.paddr=b.addr order by value desc;
165. 如何知道监听器日志文件?
以8I为例
$ORACLE_HOME/NETWORK/LOG/LISTENER.LOG
166. 如何知道监听器参数文件?
以8I为例
$ORACLE_HOME/NETWORK/ADMIN/LISTENER.ORA
167. 如何知道TNS 连接文件?
以8I为例
$ORACLE_HOME/NETWORK/ADMIN/TNSNAMES.ORA
168. 如何知道Sql*Net 环境文件?
以8I为例
$ORACLE_HOME/NETWORK/ADMIN/SQLNET.ORA
169. 如何知道警告日志文件?
以8I为例
$ORACLE_HOME/ADMIN/SID/BDUMP/SIDALRT.LOG
170. 如何知道基本结构?
以8I为例
$ORACLE_HOME/RDBMS/ADMIN/STANDARD.SQL
171. 如何知道建立数据字典视图?
以8I为例
$ORACLE_HOME/RDBMS/ADMIN/CATALOG.SQL
172. 如何知道建立审计用数据字典视图?
以8I为例
$ORACLE_HOME/RDBMS/ADMIN/CATAUDIT.SQL
173. 如何知道建立快照用数据字典视图?
以8I为例
$ORACLE_HOME/RDBMS/ADMIN/CATSNAP.SQL
82.158.170.* 于 2007-06-10 21:51:02发表:
a12362a9a8b3d11f32454fe3d4b6f722 http://ugc-cine-cite-parco-leonardo.hhknox.net.in/ http://volte-capita-non-capire-bene-succede.mksqkw.net.in/ http://mobile-security-40-per-symbian.ooqqld.net.in/ http://l-uomo-ombra-il-film.kfxrfs.net.in/ http://testo-canzone-hero-mariah-carey.ooqqld.net.in/ http://hotel-europa-and-nocera-umbra.dtifhu.net.in/ http://socio-cooperativa-responsabilita-obbligazione-sociale.innltr.net.in/ http://locale-latino-americani-liscate-milano.ooqqld.net.in/ http://foto-ragazza-perizoma-sotto-gonna.ooqqld.net.in/ http://heinrich-von-kleist-racconto-garzanti.ooqqld.net.in/ 319dbbb4ab069a1bfb4a4d4d12c61dcd
83.43.134.* 于 2007-06-09 20:49:25发表:
942c1691e344547670a090b304ec4511 http://centro-accoglienza-s-vincenzo-cagliari.innltr.co.in/ http://member-tripod-com-apparato-digerente.hhknox.co.in/ http://blog.myspace.com/196095605 http://gioco-dragon-ball-z-windows-xp.innltr.co.in/ http://commissione-preparatoria-corte-penale-internazionale.ooqqld.co.in/ http://media-player-da-scaricare-gratis.ooqqld.co.in/ http://officina-revisione-auto-moto-ascoli-piceno.oaxzml.co.in/ http://britney-official-site.blogspot.com/ http://formicolio-al-braccio-dolore-dito.hhknox.co.in/ http://blog.myspace.com/195751575 48c0bb0f30b00789fa1734f152bbea8f
84.100.96.* 于 2007-06-08 20:40:00发表:
d2128f757356f1a6a71cfac849549053 http://emissione-scontrino-venditore-ambulante-itinerante.lbpwqo.org/ http://windows-xp-professional-licenza-costo.pauhzy.org/ http://intervento-pasquale-larosa-area-gioia-tauro.mbxbva.org/ http://perdita-ematiche-dopo-20-giorno-mestruazione.akermn.org/ http://video-sigla-telefim-anno-90.lbpwqo.org/ http://il-cielo-in-una-stanza-testo.iumzde.org/ http://csi-porto-san-paolo-olbia.lbpwqo.org/ http://troia-nana-succhiano-gransex-cazzo.akermn.org/ http://fiat-nuova-500-tuning-1998.hwqegr.org/ http://posta-italiana-ricorso-lavoratori-determinato.iumzde.org/ e44c2d91c99facb894d3b26e91151560
62.43.49.* 于 2007-06-07 23:10:51发表:
8c8493f5db14dd81a53980c5f5a644a1 http://san-andreas-missione-trucco-pc.ouwnql.org/ http://l-arte-di-sedurre-una-donna.kkwhbs.org/ http://scheda-sicurezza-omologazione-biocidi-presidi-medico.ulhxdx.org/ http://decreto-legge-n-273-2005.fjhozm.org/ http://guida-in-stato-di-ubriachezza.tpfcwv.org/ http://si-vestivano-indiano-d-america.kkwhbs.org/ http://test-di-orientamento-alla-scuola-superiora.lykglu.org/ http://musica-per-fare-l-amore.lykglu.org/ http://link-http-www-hardsexxo-com.rpddkk.org/ http://codice-sim-city-4-deluxe.rpddkk.org/ 2e2f8656ca7971267ae7180fc612fe21
81.243.200.* 于 2007-06-07 01:54:03发表:
2abe20c4696188db92c8b6a1ef4e20c7 http://listino-motore-p-c-r.odkgrg.info/ http://macchina-per-need-for-speed.ytqkdb.info/ http://vigili-urbani-concorso-anno-2006.vdamgw.info/ http://traduzione-testo-supermassive-black-hole-musa.gjtkci.info/ http://km0-lancia-ypsilon-auto-nuova.zjtbra.info/ http://trovo-molto-interessante-la-mia-parte.ciymwb.info/ http://salva-schermo-ballerina-tempo-musica.alflim.info/ http://harry-potter-ordine-fenice-it.vdamgw.info/ http://frasi-di-auguri-di-pasqua.ciymwb.info/ http://migliaia-immagine-dragon-ball-z.vdamgw.info/ 6dea66dd0952ca77d762129bda0df247
88.6.77.* 于 2007-06-06 04:47:27发表:
76ea367d19d3f65f5988191f794a68c4 http://legge-154-88-rendita-catastale.qirjux.info/ http://avana-zorra-y-el-cuervo.jknrtq.info/ http://poesia-per-la-festa-della-mamma.xaotvu.info/ http://pista-sci-fondo-alta-val-pusteria.lbvsgo.info/ http://afterhours-ballate-per-piccole-iene.duajwe.info/ http://informatica-definizione-compressione-dei-dato.duajwe.info/ http://beati-i-poveri-di-spirito.qirjux.info/ http://colonne-sonore-film-da-scaricare.yyunae.info/ http://universita-suor-orsola-benincasa-di-salerno.yyunae.info/ http://forum-fuoristrada-it-pajero-sport.xaotvu.info/ 11bac96dbb32ab2fd1a6f4018c996a56
63.245.38.* 于 2007-06-05 10:03:19发表:
4b95834fe233e5d9cd8254ec63faedad http://ibrido-rettiliani.uyohtb.info/ http://sterno-gaetana.boixkk.info/ http://servizio-guardasala-treviso.boixkk.info/ http://vendita-ingrosso-complemento-arredo-tappeto.kbucdn.info/ http://phnom-penh-lilay-hotel.uyohtb.info/ http://corone-gotiche.dhvvfi.info/ http://cavigliera-neoprene.kbucdn.info/ http://allcelebrity-it-santarelli.uyohtb.info/ http://consiglio-agli-uomo-ridurre-occhiaia.wkermn.info/ http://tapi-roulant-perdere-peso.dvtuzm.info/ 4080af707aca2bbb96231fb1b4743d28
217.217.43.* 于 2007-06-04 15:43:15发表:
9d9dffd808a1fc9bf6a58deb46a49608 http://usb-ide-hard-disk-adattatore.divuvu.org/ http://casa-atrix-550w-digital-display-modding.dlmpxx.org/ http://oscar-classico-moderno-mondadori-1984-orwell.nfvzoo.org/ http://superenalotto-del-18-03-06.dqiqbg.org/ http://schema-contratto-locazione-alloggio-r-p.divuvu.org/ http://vertenza-buonuscita-lavoro-domestico-nero.dqiqbg.org/ http://influenza-del-gruppo-tra-adolescenti.divuvu.org/ http://venga-a-prendere-il-caffe.xcwjal.org/ http://buono-alla-scuola-regione-piemonte.xcwjal.org/ http://storia-dell-arte-contemporanea-italiana.xcwjal.org/ e2344a7b53a49ae4d6fdb2a64dbf9945
83.165.113.* 于 2007-06-03 19:40:23发表:
77b7ac4e3fa1c298acd9eefc7e2c3be2 http://telaiobicilook386.akqcvy.org/cenno-liuteria/index.htm http://prezzosaecocaffc3a8.inkrxe.org/nuova-immobiliare-falorni/index.htm http://patriciaecheveriafotogallery.seyzuo.org/schiava-dominatrice-lesbo/index.htm http://sitewebcartolinaanticamarinacamerota.akqcvy.org/ibox-timit/index.htm http://conversionelibbrechili.akqcvy.org/gambero-wilkipedia/index.htm http://marcianuzialemendelshon.akqcvy.org/prestazione-diablo-5700/index.htm http://bollettinouffficialedellaregionecalabria.seyzuo.org/lucien-rochat-catania/index.htm http://edilserviceattrezzaturaedile.nlamku.org/url-http-www-riminibeach-it-vacanza/index.htm http://schemapuntocrocepreciousmoments.nlamku.org/antonio-bernieri-vicario-generale-bartolomeo-capra/index.htm http://ricaricarexverde357.nlamku.org/grimaldi-tour-operetor/index.htm 83869c431dabc6ba13fe3e3c64cc8ac5
84.126.225.* 于 2007-06-03 01:58:51发表:
080768369ea33702090520026e28a42c http://machinavaporizzazioneaspirazione.sdibjo.org/rifugio-orestano/index.htm http://alenatuttatuach.lskson.org/castiglione-racingparts/index.htm http://penna4refildiversi.bdizoa.org/timisoara-investimento-caccia/index.htm http://batteriosiringainfettatempoincubazione.ksibgs.org/repent-walpurgis-spartito/index.htm http://samueldiscopub.shxghd.org/non-trovo-kimahri-longinus/index.htm http://faggiopollone.shxghd.org/pulisci-termosifone/index.htm http://trasportinocaneaereogulliver.bdizoa.org/telecamera-panasonic-nv-gs35/index.htm http://trullopasolini.shxghd.org/falegnameria-tunisina/index.htm http://scritturacontabiletrasferimentoimmobilerimanenza.lskson.org/stefania-sandrelli-gamba-aperta/index.htm http://canettisefarditi.bdizoa.org/scarpone-trekking-asolo/index.htm 691e5261e7f26fe9bfca38d324fb1940
80.219.232.* 于 2007-06-02 05:09:31发表:
cca3ba296e21f83e82a499ab5dd6f4f8 http://boschlavastoviglieincassovogliosapereprezzo.beajbg.org/affissioni-centro-sarca/index.htm http://nuovocoloresh125i.nlamku.org/orecchino-chandelier/index.htm http://irmaallestimentometallico.seyzuo.org/gioco-divertente-oneline/index.htm http://parallelismoflangemacchinarotanti.inkrxe.org/scarica-autocad-modellismo-sartoriale/index.htm http://boschlavastoviglieincassovogliosapereprezzo.beajbg.org/eugenio-pacelli-albero-genealogico/index.htm http://spaccalegnaverticalefoto.akqcvy.org/stefania-sansonna/index.htm http://selfcareliberoitpassword.seyzuo.org/pt100-sonda-temperatura-pozzetto/index.htm http://fiamatricolore.beajbg.org/medicinale-uccello-gabbia/index.htm http://schematecnicotvgoodmans.seyzuo.org/germania-azienda-produttrici-acido-ialuronico/index.htm http://klariceferraro.seyzuo.org/achivio-stato-genova/index.htm 63aa5c5d6850cbd0ab7a0b3644130d9e
83.55.139.* 于 2007-06-01 11:42:13发表:
654ef3a54df04b189c112c08321c09ef http://cenonecapodannopescasseroli.gkgobd.org/infermiera-competenza-utic/index.htm http://ventaclubfaarana.pdjkai.org/etichetta-tessute-nastro/index.htm http://ireneghergo.leikrf.org/chirurgia-endoscopica-naso-sinusale-fes-fess/index.htm http://musicolwinxpadova.leikrf.org/pompa-travaso-fusto/index.htm http://transinculatiasino.leikrf.org/libro-poesia-dialettali-ostuni/index.htm http://francescocozzapittorestilese.gkgobd.org/tappeto-baila/index.htm http://villaggiodegliulivopalinuro.gkgobd.org/fornitura-scolastica-ufficio-rotring/index.htm http://professoressamatematicamolestie.uzghnh.org/capannina-bevera/index.htm http://faccettanerawavcellulare.uzghnh.org/flexa-stivale/index.htm http://topcollegescomvscholarshiphtml.leikrf.org/morsetto-acciaio-trave/index.htm 5447788e0ee79eeca3d64876f41eb1cf
81.203.48.* 于 2007-05-30 03:35:15发表:
c1e17c91da01c844fed6e909057e275b http://mnopyi.org/emprego/emprego-sjcampos.html http://pegekq.org/vantagens/vantagens-lampada-incandescentes-relacao.html http://pegekq.org/djavam/djavam-oceano.html http://ifrtox.org/lesbicas/lesbicas-guarabira.html http://ifrtox.org/corretoras/corretoras-imovel-cidade-uberlandia.html http://mnopyi.org/domesticacao/domesticacao-animal-periodo-paleolitico.html http://ovvkft.org/amazonia/amazonia-povo-mito-crencas.html http://ifrtox.org/gastronomia/gastronomia-portuguesa.html http://mnopyi.org/prescricao/prescricao-administrativa.html http://ifrtox.org/sete/sete-ferramenta-qualidade-resolucao-problema.html a91f06099d8916d08fc86aebeef191c8
88.161.132.* 于 2007-05-29 02:17:52发表:
1134cf284b24520d25ff7d6b1daba596 http://lcitij.org/orkutando/orkutando-net-jogo-oline.html http://lcitij.org/artesanato/artesanato-country-caixa-baralho.html http://xvqeoy.org/oi/oi-cmo-br.html http://xvqeoy.org/mapa/mapa-de-franca-sp.html http://grpytd.org/radio/radio-regional-amarante.html http://xwqumn.org/controlador/controlador-de-comunicacao-pci.html http://sxrzpn.org/cristina/cristina-harumi-tahara.html http://xwqumn.org/forro/forro-moral.html http://sxrzpn.org/resenha/resenha-obra-pasargada.html http://grpytd.org/nx0/nx0-banda.html ea84313ff4cf4b8bb8ec851c693c83a5
201.252.64.* 于 2007-05-28 10:26:10发表:
91ead470cd1448f65472b5fd8ce79dc8 http://grpytd.info/thermas/thermas-homem-negros-gays.html http://pegekq.info/musica/musica-da-novela-mulher-apaixonadas.html http://ifrtox.info/musica/musica-funk-base-abaixar.html http://mnopyi.info/dengue/dengue-virus-pesquisa-larvas.html http://mnopyi.info/decreto/decreto-lei-1-305-1974.html http://mnopyi.info/venda/venda-mesa-festa-ferro-metal.html http://pegekq.info/site/site-ig-br-www-rede-globo-br-bbb-paredao.html http://mnopyi.info/produto/produto-plastico-utilidade-domestica.html http://grpytd.info/programa/programa-computador-gratis-melhores-baxa.html http://grpytd.info/educacao/educacao-fisica-aquecimentos-beneficio.html 921da3b25f91ff5411abb8e73f72697f
85.136.164.* 于 2007-05-27 18:33:39发表:
0aec92015e70f1c949625a26c972623c http://ovvkft.info/calcinha/calcinha-preta.html http://ovvkft.info/assembleia/assembleia-deus-madureira-go-br.html http://ovvkft.info/modelo/modelo-capixaba-sheyla-almeida.html http://wfcqxw.info/preparar/preparar-palestra-evangelica-mulher.html http://wfcqxw.info/letra/letra-nx0.html http://xwqumn.info/perfume/perfume-tantra-prem.html http://sxrzpn.info/comprecar/comprecar-veiculo.html http://lcitij.info/principais/principais-filosofo-iluministas-locke-voltaire-montesquieu-rousseau.html http://lcitij.info/fa/fa-clube-calypso.html http://xwqumn.info/thatha/thatha-hotmail.html 6d9dd05b81c19c63ae8e87cbbcfe2050
81.172.126.* 于 2007-05-27 02:45:48发表:
dd098848bdccaeb7a28209f034b92b93 http://xvqeoy.info/livro/livro-rpg-dungeons-dragons.html http://grpytd.info/telemensagem/telemensagem-fonadas-belo-horizonte.html http://mnopyi.info/acropole/acropole-uberlandia-23-03.html http://pegekq.info/doenca/doenca-cardio-respiratoria.html http://xvqeoy.info/faculdade/faculdade-psicologia-vitoria-es.html http://pegekq.info/receita/receita-com-maminha-com-mostarda.html http://mnopyi.info/nocao/nocao-de-nada.html http://mnopyi.info/compra/compra-filhote-cachorro.html http://pegekq.info/caminhao/caminhao-ford-f350.html http://grpytd.info/decreto/decreto-6042-13-02-2007.html 899833c87d41a40d77c99858b4681e10
190.51.71.* 于 2007-05-26 12:48:17发表:
9a8e2582d7362b51054339f610f3d68e http://lcitij.info/denominacao/denominacao-comum-brasileira.html http://lcitij.info/bateria/bateria-recarregaveis-x-meio-ambiente.html http://wfcqxw.info/danificar/danificar-computador.html http://wfcqxw.info/ellen/ellen-padilha.html http://xwqumn.info/conector/conector-vedacao.html http://wfcqxw.info/site/site-de-video-cassetadas.html http://ovvkft.info/cadastre/cadastre-se-agora.html http://sxrzpn.info/estadio/estadio-de-futebol-do-mundo.html http://xwqumn.info/advogar/advogar-portugal.html http://lcitij.info/rap/rap-brasilia-baixar.html 3c6c60ce2277246c0f4063c97808fccb
190.36.60.* 于 2007-05-25 20:43:11发表:
e34ec261478140f4560829a749b9f6d0 http://sparks-le-parole-che-non.nuusjq.org/ http://elenco-ente-certificato-sistema-qualita.mbduev.org/ http://normativa-stock-option-nuova-finanziaria.lxcjch.org/ http://serie-c1-site-sport-msn-it.lxcjch.org/ http://di-tutto-un-pochino-com.pmdxoz.org/ http://imetec-ion-77-capello-asciugacapelli-phon.itwasb.org/ http://gazzetta-ufficiale-dei-concorso-regione-sicilia.lxcjch.org/ http://scarica-subito-gratis-emule-47a.lxcjch.org/ http://foto-film-anca-libero-va-bene.nuusjq.org/ http://vedere-video-nascosto-dietro-vetro.pmdxoz.org/ f4e92eaca3a0992e5377af9d5fb45ea4
80.200.171.* 于 2007-05-25 00:24:22发表:
18f12318ad84699710e1aa305b510484 http://la-vita-di-john-denver.ljznde.org/ http://corso-abilitazione-insegnante-scuola-dell-infanzia.lwozoc.org/ http://immatricolare-una-moto-d-epoca.ljznde.org/ http://involtini-di-prosciutto-e-asparago.ljznde.org/ http://prestito-personale-on-line-online.ljznde.org/ http://a-cosa-serve-la-vitamina-c.ljznde.org/ http://tv-araba-morte-video-saddam.xrpkif.org/ http://vendita-televisore-lg-castelletto-ticino.hgfrvc.org/ http://masterizzatore-esterno-dvd-firewire-slim.beoqvk.org/ http://viaggi-a-eurodisney-e-parigi.rsxmtx.org/ 46517f671cf87061af6ace763c7eda9d
82.213.136.* 于 2007-05-24 08:09:17发表:
1efd2b7cc9d7b98598f7db5d68306683 http://squadra-speciale-cobra-11-serie-tv.nuusjq.org/ http://lavoro-pratico-dell-assistente-sociale.sfmyzx.org/ http://scuola-normale-superiora-di-pisa.pmdxoz.org/ http://lego-harry-potter-calice-fuoco.nuusjq.org/ http://trucco-pc-jurassic-park-operation-genesis.qumpvr.org/ http://online-usato-usata-musicale-batteria.sfmyzx.org/ http://circolare-43-31-07-2006.nuusjq.org/ http://corso-serale-perito-meccanico-brindisi.lxcjch.org/ http://soluzione-esercizio-misura-meccanica-termica.lxcjch.org/ http://animatore-ventaclub-djerba-spaces-msn.itwasb.org/ 7798902e03c54f1db3af807b5937ee1b
80.36.11.* 于 2007-05-23 15:55:22发表:
0da71a5a80a678c3b243cbd257176a46 http://mrwebby.iuwexi.net/2005-08-13.html http://6000dragons.ipnwxi.net/2005-08-27.html http://brunosaba.zikpwk.net/2005-10-03.html http://interviewcorp.utwikd.net/2005-07-05.html http://herkulestv.smhiru.net/2005-08-22.html http://therangetrader.ynfqkm.net/2005-07-07.html http://gjom.smhiru.net/2005-09-09.html http://lawenforcement.smhiru.net/2005-07-20.html http://bodyjewerlyusa.qhrtwn.net/2005-09-12.html http://mutwillig.qhrtwn.net/2005-10-05.html e7000c4d06986984b665ec9d15ae719a
201.209.129.* 于 2007-05-21 20:50:29发表:
87519354db874d1d669983b7760d7c58 http://hotel-san-vincenzo-valle-roveto.csapok.org/ http://trucco-smackdown-vs-raw-2006-psp.shqsxs.org/ http://prezzo-uguali-diverse-classi-prodotto.weejwl.org/ http://fumetto-bella-arto-milano-elisa.vzlvrv.org/ http://alunni-diversamente-abili-ore-sostegno.nofnhx.org/ http://vulcano-di-sesto-san-giovanni.osjckd.org/ http://biancospino-primavera-guglielmo-d-aquitania.osjckd.org/ http://i-migliori-video-hard-gratis.ynoxmw.org/ http://foto-nora-de-pupa-secchioni.shqsxs.org/ http://amore-cercasi-anima-gemella-annuncio-personale.weejwl.org/ 417a8203d1b04948a6eb96aa4fb99866
88.5.98.* 于 2007-05-21 03:33:48发表:
7e02ebf613b9ee64d865c207f413fdfe http://strangeskies.udxpzb.net/2005-09-23.html http://slumberpage.ipnwxi.net/2005-07-11.html http://meadowoodglobal.pbcqvd.net/2005-09-01.html http://apowerwash.udxpzb.net/2005-07-27.html http://bodyjewerlyusa.qhrtwn.net/2005-10-04.html http://saudi-plastic-factory.pbcqvd.net/2005-07-19.html http://rosemaryforschoolboard.ipnwxi.net/2005-09-25.html http://5004mychampagne.zikpwk.net/2005-09-29.html http://interviewcorp.utwikd.net/2005-09-29.html http://konetinfo.ipnwxi.net/2005-09-28.html b242eb585f2503f10c8eb79a53604d31
200.120.90.* 于 2007-05-18 07:27:25发表:
e70e2c5057568c0dcf03383d316266b0 http://semifreddo-ricotta-ai-frutti-bosco.weejwl.org/ http://it-orecchino-chanel-doppia-c.nofnhx.org/ http://destinazione-d-uso-per-fabbricati.vzlvrv.org/ http://sito-ufficiale-giornale-foto-annuncio-scambista.vzlvrv.org/ http://kurt-lewin-dinamiche-di-gruppo.vzlvrv.org/ http://volo-isola-turks-caicos-north-caicos.osjckd.org/ http://procedura-semplificata-tipo-fusione-societa.csapok.org/ http://citta-messico-el-hombre-controlador-universo.csapok.org/ http://scheda-madre-asus-p5p800-skt-775.csapok.org/ http://chieti-via-ferdinando-ferro-1.shqsxs.org/ af5e5529e610c2f14667e2377e4b1e8c
84.120.191.* 于 2007-05-16 21:56:38发表:
fbe53ece111fbaac87f9acfc66eedfd5 http://vento-portami-via-con-te.hfnghd.biz/ http://gas-plus-italiana-quotata-borsa.znuawz.com/ http://staffa-appendi-monitor-tv-latina.hfnghd.name/ http://www-ministero-dei-trasporti-it.hfnghd.co.in/ http://marcelino-menendez-y-pelayo-orazio.znuawz.biz/ http://comune-alatri-bando-categoria-protetta.hfnghd.biz/ http://last-second-volo-31-12.znuawz.name/ http://parola-chiave-sfondo-natalizio-gratis.hfnghd.co.in/ http://pietro-sermonti-sweet-sweet-marja.znuawz.biz/ http://campionato-evergreen-calcio-5-verona-uisp.znuawz.com/ c5b410f967c066628d7832ce0ac5b28e
201.242.101.* 于 2007-05-16 07:01:43发表:
643756fe8e53be571650e8c7e7780f3b http://tagliare-cucire-vestito-angioletto-bambino.fflnuc.com/ http://vendita-abbigliamento-portivo.fflnuc.net/ http://selezioni-carrefour-brindisi.hzqpsj.net/ http://artigianato-fiorentino-lampadario.fflnuc.co.in/ http://nidina-confort-1.hzqpsj.com/ http://sean-kanan-nuda.fflnuc.net/ http://faretto-incassati-contro-soffitto.hzqpsj.net/ http://masseria-monterosso-putignano.fflnuc.net/ http://assistente-volo-gabriele-raviolo.fflnuc.name/ http://scheda-libro-lessico-familiare-natalia-ginzburg.hzqpsj.com/ e1c77cc030a7259f186177a086fb8a83
164.77.138.* 于 2007-05-14 22:58:15发表:
53d742aec7e27efe49ea3901af5cb51f http://centro-per-l-impiego-di-barletta.nvdset.name/ http://istituto-clinico-s-anna-brescia.nvdset.name/ http://programma-pc-italiano-sintesi-vocale-gratis.xjpled.biz/ http://premio-milleuna-tim-fascia-1000-luna.xjpled.co.in/ http://filmato-dell-esecuzione-saddam-hussein.nvdset.name/ http://bambino-mal-orecchia-rimedio-alleviare-dolore.nvdset.biz/ http://bando-gara-universita-roma-sapienza.nvdset.name/ http://solo-immobile-privato-vendita-milano.nvdset.name/ http://disdetta-contratto-locazione-uso-commerciale.nvdset.com/ http://libro-gioco-gruppo-scuola-dell-infanzia.nvdset.biz/ 8115d97afce6272748d3203e407b2c31
24.138.208.* 于 2007-05-14 11:35:41发表:
c6f86bf4dc5aeeaa371d295d12522723 http://cane-randagio-dove-portarli-roma.ujttwc.name/ http://tinta-capello-colore-biondo-dorato.ujttwc.name/ http://casa-babbo-natale-santa-claus.ujttwc.name/ http://piano-nazionale-assegnazione-frequenza-commento-2005.klkhba.co.in/ http://vendita-idraulica-tubo-multistrato-pd.klkhba.name/ http://festa-del-ringraziamento-in-america.ujttwc.biz/ http://gioco-naruto-xbox-360-2006-2007.klkhba.biz/ http://fax-simile-richiesta-contributo-banca.ujttwc.name/ http://tassa-ad-valorem-consumatore-concorrenza.ujttwc.biz/ http://condizioni-generali-contratto-noleggio-locazione.klkhba.co.in/ b0aa8b27a8ec12b02be4055d7baf88c7
190.75.162.* 于 2007-05-13 22:46:18发表:
4bff052659d21d6c016ee821e2cd72fa http://site-www-regione-sicilia-it-sicilia.obuvie.name/ http://miglior-tariffa-economica-telefono-adsl.ctvbxm.com/ http://ultima-versione-msn-messenger-plus.ctvbxm.biz/ http://download-giochi-per-il-cellulare.ctvbxm.net/ http://dati-d-lgs-196-2003.ctvbxm.com/ http://giochi-di-societa-da-scaricare-gratis.ctvbxm.name/ http://colonna-sonora-vacanza-natale-95.obuvie.co.in/ http://mtv-it-hit-list-italia.obuvie.co.in/ http://william-wordsworth-lyrical-ballads-testo-italiano.obuvie.co.in/ http://testi-e-spartito-per-chitarra.ctvbxm.name/ a647f0935ac9b246ffd2471206f1cc7e
84.123.16.* 于 2007-05-13 10:33:46发表:
4e3425201c7206a49d97d3748510f1a4 http://volo-milano-napoli-low-cost.klkhba.co.in/ http://foto-di-donna-con-tetta-grandi.ujttwc.biz/ http://ordine-degli-avvocati-di-livorno.ujttwc.com/ http://sito-tempo-libero-dei-pazienti-sordociechi.ujttwc.name/ http://agenzia-del-territorio-di-siena.ujttwc.name/ http://informazione-settore-primario-regno-unito.ujttwc.biz/ http://sexy-coppia-it-amico-gina-filippo.ujttwc.biz/ http://donna-piace-farlo-due-uomo.ujttwc.com/ http://la-seta-di-san-leucio.klkhba.name/ http://dispositivo-linea-aerea-media-tensione.klkhba.biz/ 784faf42bbc6bc8e3eef9ef627ced6bc
190.49.85.* 于 2007-05-12 18:45:31发表:
545bbdfe39bea0482e8130105560be7d http://case-in-affitto-bagnolo-di-po.tpuskc.info/ http://testo-grazie-d-esistere-ramazzotti.jnonib.net/ http://software-gratis-tradurre-italiano-winmx.tpuskc.info/ http://istituzionale-comune-brescia-it-informagiovani-informalavoro.unhbej.info/ http://acciaio-uni-8863-serie-media-prezzo.sjrmzh.info/ http://geltrude-monaca-monza-dei-promesso-sposo.jnonib.net/ http://foto-under-21-vibo-valentia.ycfrzc.net/ http://marcia-podistica-26-novembre-2007-toscana.rfqhyn.net/ http://osteria-dei-vecchi-sapori-milano.tpuskc.info/ http://testo-canzone-scivola-quel-jeans.tpuskc.info/ d9a31e90dfa815b241581cfa56f7d9b0
83.60.99.* 于 2007-05-12 04:16:41发表:
b637b61d425fd9133385b25957ecdfc4 http://schema-connettore-s-video-7-poli.wpktse.info/ http://il-senso-della-vita-monty.avborz.net/ http://codici-gta-san-andreas-per-pc.avborz.net/ http://gran-finale-fiction-televisiva-capri.wxkbfx.info/ http://riscossione-all-estero-sanzione-amministrativa-pecuniaria.unhbej.net/ http://scuola-specialita-psichiatria-facolta-medicina-torino.uwvdff.net/ http://guida-stato-ebbrezza-variazione-2006.xhzpsl.info/ http://trascorrere-natale-ambiente-familiare-magico.wsgcxb.info/ http://legge-chiamata-diretta-ente-pubblico.xhzpsl.info/ http://configurazione-vodafone-mms-nokia-6600.wxkbfx.info/ e851160535cf163ca98e2cabd77393d9
80.59.40.* 于 2007-05-10 14:38:47发表:
c045c7e96438e57c7363a67a0357300e http://dragon-ball-budokai3-codice-trucco.cbcmld.net/ http://paolo-moroni-paolo-moroni-milano-figlia.sjrmzh.info/ http://lezione-o-seduta-istruttori-calcio.uqqaqa.info/ http://tema-vantaggio-svantaggio-condizione-giovanile-oggi.sjuvcf.info/ http://ecografia-4-mese-gravidanza-immagine.sjrmzh.info/ http://paolucci-amici-di-beppe-grillo.aqnfrs.net/ http://musica-classica-accademia-santa-cecilia.sjuvcf.net/ http://disciplina-iva-commercio-olio-oliva.fzjkno.net/ http://convertire-da-audiocassetta-a-cd.jnonib.net/ http://sito-f-i-g-c.cbcmld.net/ 6ea61d011241fc97c6cd95e85f270196
190.39.143.* 于 2007-05-09 04:48:14发表:
297e9cb598087b5d6d91da5928f52ae0 http://individuazione-responsabile-civile-danno-circolazione.zqxhac.net/ http://foto-di-ragazze-svedesi-porche-gratis.fneces.net/ http://risoluzione-dei-problema-relativi-al-download.esitxq.info/ http://pianoforte-digitale-yamaha-cvp-307.cbcmld.info/ http://togliere-facilitare-protezione-stato-bloccato.zqxhac.net/ http://corsi-di-recupero-punti-patente.tpuskc.net/ http://yunus-premio-nobel-pace-2006.wpktse.net/ http://prove-caccia-al-tesoro-adulto.cbcmld.info/ http://sintesi-messaggio-giornata-mondiale-pace-2007.bhjrbx.info/ http://associazione-pesca-subacquea-valle-d-aosta.xhzpsl.net/ c30356c496a34fc36d31054e2275bbe2
81.40.216.* 于 2007-05-08 18:11:42发表:
b7229ffb29742dfd7e3d3a8322e9248a http://cover-planet-copertina-dvd-gratis.wsgcxb.net/ http://hotel-blue-lagoon-mars-alam.nxlnkr.info/ http://software-per-acconciature-di-capello.uaaxsj.net/ http://atletica-1000-metro-1971-cadetto-milano.owlybp.info/ http://come-si-apre-un-negozio.uaaxsj.net/ http://casa-affitto-ponte-legno-capodanno.uaaxsj.net/ http://disbrigo-pratiche-camera-commercio-milano.oovbhv.info/ http://cronaca-nuoro-24-11-2006.uaaxsj.net/ http://la-coscienza-di-zeno-sintesi.uaaxsj.net/ http://annuncio-and-trans-and-escort.kpcmsw.info/ ad9883469ac620e72a2c30c2417cb4d3
24.37.247.* 于 2007-05-08 04:14:21发表:
9ad87a6001f2df9012147459859ba776 http://siena-concerto-pausini-31-dicembre-2006.aphvga.info/ http://avellino-site-sport-msn-it.qncqss.net/ http://probabili-formazioni-13-giornata-serie-a.aphvga.info/ http://legge-30-dicembre-1971-1204.cbcmld.info/ http://prenotazione-camera-pensione-hotel-albergo-locanda.esitxq.info/ http://comune-di-san-giuliano-di-puglia.wpktse.net/ http://tecnocasa-nus-valle-d-aosta.qncqss.net/ http://ragazza-silvia-27-anno-fermo.tpuskc.net/ http://e-tempo-che-berlusconi-muoia.zqxhac.net/ http://lavoro-in-provincia-di-lecco.aphvga.info/ 26ebd8669f82ff2d680fe0e97ba7427c
59.28.65.* 于 2007-04-17 20:35:07发表:
http://d11ca4b48184ab476edb8009b58f12c7-t.ghoiou0.info d11ca4b48184ab476edb8009b58f12c7 http://d11ca4b48184ab476edb8009b58f12c7-b1.ghoiou0.info d11ca4b48184ab476edb8009b58f12c7 http://d11ca4b48184ab476edb8009b58f12c7-b3.ghoiou0.info 196c3da0ce3e9a23267e7eab02ad2b11