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
85.90.9.* 于 2007-09-07 04:10:38发表:
0a3911ad45a09a10536b52666fe21c03 http://conversione-da-divx-a-dvd.yojewt.org/ http://eco-mostro-bari.yavpvy.org/ http://ausl-n-3-catania.ufftiy.org/ http://bagno-in-ceramica.oxibnl.org/ http://chiusura-cancello-esterno-condominiale.oxibnl.org/ http://dove-studiare-braille.ufftiy.org/ http://concessionario-tata-ferrara.vozlau.org/ http://mare-lido-gabbiano-cupra.yavpvy.org/ http://consorzio-pisa.hhidlx.org/ http://cantina-luna-rossa.oxibnl.org/ ef5da0821261872f3a177fbd4ce2e9fc
71.195.100.* 于 2007-09-06 10:49:50发表:
8ea97528cef4459e47c224024f66ac8d http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 d950163e2bc04fe30175aa17834ab13d
125.132.147.* 于 2007-09-05 21:41:38发表:
cd727d4a75d917d325c12d3409f369cd http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 db62d9d137e7999ef0c8bbd27991ea41
85.28.74.* 于 2007-09-05 07:49:39发表:
ca080366856512cbfaa7e0d1d6ec7a1f http://monatto-peste-milano.dfmviz.info/ http://pasolini-dall-onda.dfmviz.info/ http://sensore-posizione.dfmviz.info/ http://compagnie-aeree-bologna.dfmviz.info/ http://adesivi-per-caschi.dfmviz.info/ http://corso-pilota-collaudatore.dfmviz.info/ http://navigatore-cellulare-nokia-6680.dfmviz.info/ http://cosimo-cosma.dfmviz.info/ http://ducale-a-parma.dfmviz.info/ http://valtur-neve-socio.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
201.234.168.* 于 2007-08-16 01:15:46发表:
8e8b3665af2f4786c70da4814ae0c9ad http://manifesto-funebre.flroxk.com/ http://cellulare-mp3-incorporato.flroxk.com/ http://jeans-evisu-daicock-uomo.zpvztz.com/ http://mobile-bagno-doppio-lavabo.akrmtn.com/ http://vedove-di-nassirya.zpvztz.com/ http://delitto-del-circeo.flroxk.com/ http://pentolame-alluminio.zpvztz.com/ http://exp-lora-mondo-it.akrmtn.com/ http://midi-grazie.ddxsak.com/ http://tutto-dilettante-calcio-friuli-venezia-giulia.akrmtn.com/ f79720dbd018955dfd9068d527cd2031
80.161.34.* 于 2007-07-24 17:51:05发表:
7cca9d55c57e0c2c6de8ad94127a0fa7 http://dolci-natalizi-napoletani.ppdpwx.biz/ http://spaccio-cartoleria-provincia-milano.zibtye.biz/ http://scarpa-nike-shox-ultimi-arrivi-nera.ygvhik.biz/ http://frase-elfiche.enadzh.biz/ http://variazione-sede-legale-societa.kajgdw.biz/ http://programmi-televisivi-italia-uno.tzlnou.biz/ http://strappa-esca.tzlnou.biz/ http://roberto-cavalli-pantaloni-uomo.enadzh.biz/ http://divani-pianca.enadzh.biz/ http://polpettone-uovo-sodo.zibtye.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
190.49.198.* 于 2007-07-23 08:21:15发表:
ba234ab9a4ce063f7afe2af807e8a250 http://trenino-rosso-svizzera.cqhnnx.org/ http://legge-23-aprile-2002-n-73.jnbwct.org/ http://valerio-massimo-factorum.cqhnnx.org/ http://teatro-olmetto.cqhnnx.org/ http://tempo-di-esposizione.pvaeyo.org/ http://fodere-coprisedile-comprare-online.pvaeyo.org/ http://camspa-it.vywyuh.org/ http://conflitto-induismo-religione.gbdrme.org/ http://progettazione-d-interno-lecco.cqhnnx.org/ http://duomo-assicurazione-modena.gbdrme.org/ eb89aa2351bfb8dd061b0dc25061dcdb
84.120.60.* 于 2007-07-20 16:20:33发表:
e20060820c380a6b578f2c22e35a6251 http://gigifiniziomidi.kprskz.org/fai-date-pannello-solario/ http://forumtuttorelax.nfnzro.org/vendita-tavolo-biliardo-prezzo/ http://algoritmoesercizio.kcqdnd.org/costruire-botte/ http://staticapitaledellafrica.rozdha.org/cattedrale-di-venezia/ http://seriec1gironea.rozdha.org/uomo-bello-si-masturbano-foto/ http://bastoncinifindusmicroonde.nfnzro.org/manfredi-vianini-tolomei/ http://appartamentoinaffittoparma.chohqh.org/chiaretto-di-cavaglia-passito/ http://4wdscoppio.nfnzro.org/immagini-libretto-matrimonio/ http://trovagioielli.chohqh.org/associazione-assistenza-sanita/ http://riparazionicambioautomatico.ghoouy.org/appartamento-affitto-veneto/ b8fb7d84153cc5c69600cbe1497734b2
200.95.149.* 于 2007-07-19 06:52:22发表:
65e7c3e8f73db8063cc508e7a11b38dc http://iscrizione-all-anagrafe.bkqryo.com/ http://astor-torino.aoknmm.in/ http://barbour-giubbotto.jvzulp.in/ http://cosa-sono-i-fondi-strutturali.jnesky.in/ http://rilevatore-presenza-esterno-on-line.bkqryo.com/ http://figli-portatori-di-handicap.jnesky.in/ http://traduzione-italiano-turco.uylqdg.com/ http://alimentatore-luce-emergenza.aezqpa.com/ http://manuali-tromba.aezqpa.com/ http://comune-capranica.miwcjz.com/ b8a12f78e2ab8d9c8e5e94f78e975725
84.124.169.* 于 2007-07-17 18:54:45发表:
9a3ceaf524da9b7e293e7418dcfd2f7b http://drawingcemeterymodenabyaldorosso.wfdklb.org/battlefield-2-visualizzazione-texture/ http://coefficentirivalutazionetfr.qbmkwd.org/banca-credito-cooperativo-napoli/ http://risultatopartitapallavolo.lgyeas.org/riparazione-frigorifero-milano-san-donato-milanese/ http://esempioinvito.eebsig.org/cimitero-san-cataldo-modena-aldo-rosso/ http://musicacantoscuola.copdkj.org/trattoria-economica-milano/ http://lucamarini.qbmkwd.org/barriera-sicurezza-raggio-infrarosso-industria-meccanica/ http://modellostandard.qbmkwd.org/guido-bertolaso/ http://modellostandard.qbmkwd.org/ninfomani/ http://ministerosaluteitprofessionesanitaria.jpwypc.org/valore-campo-magnetico/ http://configurarepostalibero.vniybd.org/ospedale-macchi-varese/ 8ea4fcdde1a965ef95e68187f350c6f6
195.238.169.* 于 2007-07-17 10:59:29发表:
http://4f59af8ec801e5b3c9e0c4aacd3dff9f-t.xkktxb.org 4f59af8ec801e5b3c9e0c4aacd3dff9f http://4f59af8ec801e5b3c9e0c4aacd3dff9f-b1.xkktxb.org 4f59af8ec801e5b3c9e0c4aacd3dff9f http://4f59af8ec801e5b3c9e0c4aacd3dff9f-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
190.21.32.* 于 2007-07-16 10:04:14发表:
0566d1c1c252ddb9383a9993dc6773ab http://clinica-privata-medicina-riproduzione.wdexfm.biz/ http://concorso-per-allievi-marescialli.xxmndb.biz/ http://genova-torre-popolo.nioqlj.com/ http://stefano-bocchi.jmncsw.biz/ http://manuale-officina-pdf-cbr-1000-rr.gwedas.com/ http://misuratore-portata-milano.mxkrxs.com/ http://cassetta-utensile-beta.nioqlj.com/ http://case-editrici-per-pubblicare-un-libro.xmjviq.com/ http://stereotipo-cinese.xxmndb.biz/ http://agevolazione-invalidita-75-comune-roma.mxkrxs.com/ 8cff813cd5cdf93d908a9e43c4704dad
88.160.97.* 于 2007-07-15 02:15:30发表:
53996c6fe11e4aad91ee00d3686531e0 http://lottomatica.eqacfr.org/italiano-dispense/ http://aidayespicafoto.tvmowd.org/accordare-ukulele/ http://romaimpero.vozulo.org/berlusconi-ultime-notizie/ http://crtlnd.kqjhpm.org/truppa-argonautiche/ http://ordinecommercialistidiroma.seklde.org/cucina-country-muratura/ http://scioperobustrieste.kqjhpm.org/storia-televisione-parodia/ http://ravepartybolognacapodanno.jlmwbv.org/discoteca-loft-capodanno-roma/ http://fiorelloimita.tvmowd.org/punto-snai-valentina/ http://scatolineorigamo.mongnb.org/video-martina-giorgio-alfieri/ http://capxviipromessosposo.vozulo.org/alcatraz-afterhours/ a875aa102e91579b074fe29fa7a13e81
81.202.190.* 于 2007-07-13 19:01:49发表:
7ff9454832873ee83ffa1ed18e447c50 http://direttore-edward-mano-forbice.ubetii.org/ http://costa-orientale-it.njylwy.org/ http://acessori-honda.wxamgv.org/ http://gianluca-guidi-figlio.njylwy.org/ http://codice-fiscale-free.tttfhp.org/ http://7-aprile-1999.wxamgv.org/ http://negra-bocchinare.mpxxqr.org/ http://cenone-puglia-capodanno.lldpzx.org/ http://foto-sesso-orale-donna-quarantanni.wxamgv.org/ http://allergeni.mpxxqr.org/ 8c2a5fabd273020cebfaea52010ee4bb
89.16.29.* 于 2007-07-12 12:18:35发表:
2ba4947c3f83a8bd6557e5e7eef2a7c2 http://lanificio-montemurlo.egcngx.org/ http://teatri-a-torino.xxfvsr.org/ http://libro-verde-energia.jdcyvo.org/ http://2.kfqswq.org/image/album/images/pages/palestra_jpg.htm http://johnny-cash-american-v-recensione.xxfvsr.org/ http://genova-museo-etnografico-castello-d-albertis.egcngx.org/ http://ischia-agosto-offerta.yorcfb.org/ http://rossana-cartone-manga.udzjxi.org/ http://aggressivita-dobermann.jdcyvo.org/ http://le-onde-einaudi.rtistm.org/ d8d97f68bc274489b372d34e17b3a169
190.172.86.* 于 2007-07-11 05:05:39发表:
67f3b299bb7050cbfabb5531a1e99ab1 http://21.skachaj.org/pagina72.html http://13.skachaj.org/pagina91.html http://3.skachaj.org/pagina27.html http://23.ska4aj.org/pagina40.html http://3.ska4aj.org/pagina18.html http://10.skachaj.org/pagina43.html http://22.skachaj.org/pagina89.html http://13.skachaj.org/pagina71.html http://5.ska4aj.com/pagina51.html http://18.skachaj.org/pagina13.html 53f688e2d0ae01a48f96ad8f8181d4f6
89.159.194.* 于 2007-07-09 20:15:45发表:
287b725cb317772fa0f14bedbcc6ef06 http://masterizzare-bin-e-cue.fyicly.org/ http://vendita-piante-aloe-vera.wywplu.org/ http://tutti-modello-jeans-gucci.dkzfpf.org/ http://pro-loco-lago-garda.uvrseh.org/ http://storia-quartetto-sax.gtimmg.org/ http://harry-potter-eil-calice-fuoco.wywplu.org/ http://nuoto-coni.fyicly.org/ http://softwares-foglio-calcolo-cassa-gratis.gtimmg.org/ http://viaggi-ponte-primo-maggio.fyicly.org/ http://stufa-pellet-miglior-prezzo.dkzfpf.org/ 9b45a0bdde2cb75e21785d72ae4741f7
201.245.234.* 于 2007-07-08 10:40:20发表:
06dec0613ea8cc45cdd13eba18b17fc0 http://salotto-fabbrica-campania.zgagyw.org/ http://bulimia-site-sanihelp-msn-it.zgqwur.org/ http://comunesantomero.ikwuex.org/cartone-bella-bestia/ http://viaggio-d-istruzione-partecipazione-accompagnatore.wdhffe.org/ http://artriti-psoriasi.djrtlt.org/ http://ordinedottoricommercialistabrescia.xheadf.org/anello-re-salomone-konrad-lorenz-riassunto/ http://mauro-campini.wdhffe.org/ http://pierfrancesco-candiani.wdhffe.org/ http://offertabigliettoaereoalitaia.xheadf.org/elenco-numero-primo/ http://mousetastieracordless.sphfph.org/tempo-canale-5/ cda9cd96507def8918671c23330ec82a
200.82.232.* 于 2007-07-07 04:32:58发表:
c8c523aff4a34309d287e4ef79d37000 http://handball-casavola.zikywm.org/ http://serviziodoganamalpensa.ilbeox.org/scambio-di-coppia-calabria/ http://cinecitta-pallavolo.zikywm.org/ http://tradurreingiapponese.ilbeox.org/petti-pollo/ http://vino-casa-via-pinot-nero.zikywm.org/ http://artificiale-rapala.xxbtpu.org/ http://assembleaordinariastraordinaria.ilbeox.org/topten-salsomaggiore-vendita-cd/ http://plusvalenza-tassazione-superficie-uso-pubblico-esclusione.xxbtpu.org/ http://frequenze.jwwdqu.org/ http://screensaver-spiaggia.ylbtbt.org/ 268af5f4294519a6b3a74dbb7c6fdf14
200.86.24.* 于 2007-07-03 11:34:32发表:
6eb9e40501cfc0e42bc38d398026c0f6 http://prolunga-wireless.appkbj.org/ http://terminiimpugnazionesentenzadisciplinare.yzwptv.org/calabria-concorso-reggione/ http://fiorecatalogo.yzwptv.org/tomtom-creare-voce/ http://crepuscolo-degli-dei.ktxvwk.org/ http://pernottamento-provincia-milano.ktxvwk.org/ http://mobile-benedetti-arezzo.appkbj.org/ http://testo-cabaret-animazione.fxlpep.org/ http://cooperativebrescia.hfcqnl.org/porno-amatoriale-it/ http://passaggio-proprieta-autovetture.kyvvig.org/ http://pluto-telefono.appkbj.org/ 859eef08b4e5aeb7d2285ed40d693c72
84.121.42.* 于 2007-07-02 06:19:23发表:
77831dcb18008a571db3e9729ca61fce http://cancellare-master-boot-record-linux.kfxrfs.org.in/ http://vedere-foto-anna-tatangelo-it.innltr.org.in/ http://gestione-amministrativo-contabile-camera-commercio.pifljm.org.in/ http://ciclometria-applicata-al-gioco-lotto.kfxrfs.org.in/ http://il-maestrale-e-un-vento.omulsq.org.in/ http://mutuo-regionale-sicilia-tasso-0.ooqqld.org.in/ http://187-reggimento-paracadutista-folgore-foto.oaxzml.org.in/ http://decreto-legislativo-n-509-1988.qttkja.org.in/ http://offerta-lavoro-roma-collaboratrice-domestica.qttkja.org.in/ http://normativa-rimborso-spese-prestazione-servizio.oaxzml.org.in/ 8a848390101f52442387e8806988b168
81.236.24.* 于 2007-07-01 01:34:38发表:
4d88a56a76b2c8551f1da9d063998e88 http://www.annoautononpossonopiucircolare.ocuokj.org/ http://www.nonvisualizzaiconapannellocontrollo.qrxvou.org/ http://olimpiadimatematica2006primolivello.zawphd.org/ http://scadenzadomandaporcampania.gdedkb.org/ http://www.ingegneriatorinotelematicatestammissionepreparazione.gdedkb.org/ http://profgasparottichirurgoplasticoroma.qrxvou.org/ http://lanfranchirobertavideofantasticaitalianaseno.hrjksn.org/ http://conseguenzacessazionerapportolavorocoopsociale.jfjurx.org/ http://www.indirizzoistitutobambinoabbandonatimilano.opojum.org/ http://www.centroautorizzatiricambioferrolipuglia.hrjksn.org/ 246f5573f09449eb624440463d221fca
80.37.91.* 于 2007-06-29 22:56:32发表:
59729ded54de5a8d3255410cd92f80e0 http://stoccolma-radisson-sas-arlandia-hotel.msjbrf.org/ http://daromaalavana.zcsdiw.org/produttore-pompa-basso-consumo-laghetto/ http://programma-nokia-6680-6630-6600-gratis.oensnx.org/ http://lastminutedicembresharmelsheik.uqjhgg.org/immagini-di-persona-che-urinano/ http://trucco-medieval-ii-total-war.oensnx.org/ http://corsopostlaureamedicinaestetica.uqjhgg.org/sci-atomic-carving-tutti-modello/ http://le-piu-belle-canzoni-rock.xflxat.org/ http://codicecivileinteressegeneraleseguitosocieta.uytput.org/testo-canzone-just-like-pill-pink/ http://traduzione-testo-dei-maroon5-this-love.xflxat.org/ http://montalehoscesodandotiilbraccio.zcsdiw.org/fiat-850-special-competizione-vendo/ 242a24eaaf2d8b6d338dfc62711422de
190.77.8.* 于 2007-06-28 22:08:54发表:
cd3e6769d857118dc7f286ca975c6be0 http://personaggiostoricinati2907.fxbzoa.org/poesie-sulla-famiglia-per-bambini/ http://accessoriotelefoniasanpaolodargon.aklifa.org/gioco-java-it-www-gioco/ http://risultato-d-asta-de-chirico.meoprr.org/ http://leggeregionalelazion252001.fxbzoa.org/vendo-materiale-grande-formato-usato/ http://cdcnxtintelpentium4524.bcpmpo.org/tar-reggio-calabria-anno-2006/ http://ilgiuramentoantiromanodiannibale.bcpmpo.org/appartamento-per-vacanza-a-roccaraso/ http://pellicola-per-fax-leonardo-telecom.csirgp.org/ http://disciplina-iva-collaborazione-coordinate-continuative.yigqdu.org/ http://burregionepuglia.hwdwav.org/componentistica-elettronica-sensore-gas-metano/ http://windows-live-messanger-scaricare-gratis.yigqdu.org/ 24974b376644b5034250f73cecc2d1d6
88.12.175.* 于 2007-06-27 18:38:12发表:
bcf5faa2b1c7a52371ba07026304389b http://rifugio-alpino-in-valle-d-aosta.oacpyn.org/ http://valutazione-dei-rischi-azienda-agricola.vpvnno.org/ http://www-comune-basiglio-mi-it.xzpkti.org/ http://termine-entro-registrare-fattura-acquisto.jyrxnc.org/ http://buon-funzionamento-scheda-video-ati.mfsvnp.org/ http://proteina-c-reattiva-pap-test.awdhmg.org/ http://tassa-possesso-euro-0-2007.wknmyv.org/ http://disegno-bambino-colorare-vacanza-scuola.avypou.org/ http://piani-di-cottura-3-fuoco.zqlmym.org/ http://decreto-ministeriale-11-aprile-2006.jojues.org/ dff758ad4d024eb641677108bbbbea97
81.202.173.* 于 2007-06-26 16:40:12发表:
a7b2ee422d2210f08db7f7fc999e4eb0 http://lap-dance-metro-milano-video.ozetoz.org/ http://societa-fatturazione-dell-acqua-bologna.ynkpgu.org/ http://masterizzatore-dvd-light-scribe-silver.rjablq.org/ http://art186comma7cds.mjdrvf.org/valenzia-convento-de-santo-domingo/ http://hotel-3-stella-val-gardena-piscina.filgvg.org/ http://imposta-comunale-sugli-immobili-ici.taryvn.org/ http://scrivereletterapresentazioneaddatorelavoro.swmvze.org/societa-sportiva-san-paolo-praia-mare/ http://luogo-ufficio-genio-civile-siena.pidgzp.org/ http://hotel-di-charme-costa-azzurra.filgvg.org/ http://areavacanzavallituresaurina.swmvze.org/scheda-per-imparare-a-leggere/ ac74524788537f28ae4c90c357df5e97
24.203.199.* 于 2007-06-25 15:49:24发表:
1e046620bd491b4f0c65fa5b108b144c http://quiz-abilitazione-all-esercizio-venatorio.lzuess.org/ http://traduttore-gratis-on-line-inglese.ddbpnz.org/ http://serata-musicale-grati-zona-veneto.lzuess.org/ http://caseinaffittorivadisolto.gydeyj.org/copertina-hot-party-winter-2007/ http://pistapermotoinitalia.wyselb.org/tutti-corpo-istituto-vigilanza-verona/ http://agriturismoilmulinointoscana.wnoohz.org/tavola-periodica-degli-elementi-completa/ http://michelinatlantistradalemapstore.gydeyj.org/pila-ricaricabile-4-5-volts/ http://dottssacrisalavororomamail.gydeyj.org/io-voglio-vedere-simon-nudo/ http://elementominaccia612cp.gydeyj.org/lavoro-o-s-napoli-provincia/ http://freshauditionsbizfafreshauditions199mpg.wyselb.org/foto-tifo-lecce-brescia-2006-2007/ 245153f8fc5ca6b7c7f1325ac3918a81
213.231.104.* 于 2007-06-24 14:27:15发表:
28c7f325f8788e5375d273ee5e1ab4cc http://piattotipicotrentinoaltoadige.savnjk.org/annuncio-di-sesso-con-numeri-telefonici/ http://manutenzione-mp3-packard-bell-roma.fdkwms.org/ http://per-vedere-la-tv-gratis.iolfyk.org/ http://dominatornx650schedatecnica.fmyuaf.org/programma-mario-fargetta-music-maker/ http://siliconealtetemperaturamaterialeproduzione.uwqbko.org/intervista-responsabile-risorsa-umana-posta-italiana/ http://valoriagricolimedianno2006.fmyuaf.org/annuncio-gratis-donna-cerca-uomo/ http://valoriagricolimedianno2006.fmyuaf.org/accessorio-maglia-tuta-sciarpa-calcio-offerta/ http://assicurazione-auto-epoca-fondiaria-sai.ztbpeb.org/ http://c-programma-solidworks-data-template.blzjgn.org/ http://softwaresharewareconvertirefilemovmpeg.savnjk.org/turismo-alle-maldive-dopo-lo-tsunami/ 452262cf741011e1ab8f1c4bc30a15a9
85.86.154.* 于 2007-06-23 13:10:20发表:
3f9164e026462009bc39f827f94df88d http://tuttiitestigigidalessio.inpusz.org/analisi-economica-diritto-al-marchio/ http://lettore-dvd-hard-disk-panasonic-dmr.kesdip.org/ http://centriperlimpiegopadova.inpusz.org/limite-c-o-v-tabella/ http://marche-da-bollo-su-fattura.vjsvzo.org/ http://favola-esopo-greco-ed-italiano.xrndwe.org/ http://casadiriposoafirenze.ihbepf.org/dimensione-tecnica-dei-profilo-alluminio/ http://traduzione-detti-fatto-memorabili-valerio-massimo.xrndwe.org/ http://gliaffrescodellevilladeimisteri.inpusz.org/collegio-san-carlo-centro-sportivo/ http://videofreesessoconanimali.inpusz.org/scuola-superiora-alberghiera-boario-provincia-brescia/ http://ultimosoftwareautoveloxgarminc330.inpusz.org/sim-city-3000-in-italiano/ 9552dfe41baaa9f17aeb9f3e17cab334
84.101.168.* 于 2007-06-22 10:57:34发表:
2907c1dd9bfacd57bd9d0d36a4b8ad56 http://barca-vela-vendita-usato-foto.myniqy.org/ http://vorreiesserecomebiagioantonacci.dlzazi.org/hard-disk-7200-2-5-pollici/ http://appartamentipervacanzeinpuglia.ibiwol.org/ricorso-commissione-tributaria-irrogazione-sanzione/ http://parconazionaleyosemiteupperpinescampground.qurqnr.org/t-g-veneto-rai-3/ http://mariadefilippiamicomediaset.ibiwol.org/clonato-cellulare-paris-hilton-foto/ http://cartellostradalelimitealtezzapontecamion.dlzazi.org/immagine-disney-car-motore-ruggenti/ http://on-line-prosciutto-crudo-regalati.ojfmto.org/ http://frasefamosapassidellamore.ibiwol.org/trasferimento-dato-xml-visual-basic/ http://societacalciomarisreggioemilia.dlzazi.org/mastro-birraio-san-giovanni-gallery/ http://elencoclientefornitored2006.qurqnr.org/offerta-cenone-capodanno-hotel-rimini/ 8d0a7cd2b17a8f039de7dab06d2ae220
69.70.138.* 于 2007-06-21 05:15:58发表:
334ead89f4fcca984868bfba1d6799bf http://verbale-rinuncia-all-eredita-minorenne.axbzdu.org/ http://unione-dei-cinque-comune-vigasio.rfnfwr.org/ http://distintivo-brevetto-pilota-militare-elicottero.axbzdu.org/ http://foto-carlo-verdone-sacco-bello.lvnrii.org/ http://vendita-fujifilm-foto-camera-digitale.cmuvxp.org/ http://matura-leccano-mazza-foto-galleria-gratis.cmuvxp.org/ http://jennifer-lopez-ben-affleck-novella-2000.tiabis.org/ http://commento-terzo-canto-dell-inferno-dante.lvnrii.org/ http://6.flpvgy.org/ http://0.flpvgy.org/dream/computers/computerdreams.htm 3281355dcdf7961a81348339c85b8f61
190.39.126.* 于 2007-06-20 03:35:34发表:
444e825c1ba56b2cce067e20cae97012 http://festa-dell-immacolata-nicotera-marina.ykjmka.org/index.htm http://pannello-fototermici-ad-aria-calda.qafifx.org/index.htm http://colonna-sonora-kill-bill-vol.sjfxge.org/index.htm http://san-vito-dei-normanno-it.qgzsds.org/index.htm http://rai-radiotelevisione-italiana-sede-milano.vdaysf.org/index.htm http://preliminare-di-vendita-di-cosa-altrui.hzsssu.org/index.htm http://video-donna-che-fanno-pipi.ykjmka.org/index.htm http://the-oc-wallpaper-video-foto.ykjmka.org/index.htm http://opera-san-francesco-poveri-bari.vwdrxg.org/index.htm http://sole-24-ore-catania-benanti.mqpgvv.org/index.htm a95af8f224b8c9334b8122ef4b45f39a
201.248.237.* 于 2007-06-19 02:17:06发表:
1ea35fb2ad068d2e82ae8ab3607f06aa http://suoneria-polifonica-cellulare-benny-hill.tadctp.org/index.htm http://flavio-mazzoni-san-matteo-decima.vooxwa.org/index.htm http://i-fantasmi-di-porto-palo.giqjae.org/index.htm http://vendita-abbigliamento-sportivo-on-line.ugbiie.org/index.htm http://pacchetto-last-minute-firenze-centro-storico.fyeclo.org/index.htm http://20-settimana-2-giorno-gravidanza.gbiynf.org/index.htm http://capodanno-roma-villa-dei-principi.xfjpsj.org/index.htm http://storia-cinema-nascita-ad-oggi.mboptw.org/index.htm http://incontro-preghiera-bambino-immacolata-concezione.bpdwtu.org/index.htm http://altrimenti-arrabbiamo-coro-dei-pompiere.aenjba.org/index.htm b8055c662679464e43a32265312932f9
88.22.88.* 于 2007-06-18 01:24:31发表:
121e9e5d198cf4837c45abf5a07eb08c http://art-3-d-lgs-504-92.lwfhrb.org/index.htm http://case-in-affitto-castellazzo-novarese.ovnfxu.org/index.htm http://produzione-prodotto-parrucchiera-friuli-venezia-giulia.glzaqv.org/index.htm http://statistica-motore-derby-gp1-50-racing.lwfhrb.org/index.htm http://palmare-acer-n310-pocket-pc-intel.ogttfu.org/index.htm http://vari-file-midi-r-m.esqhid.org/index.htm http://calendario-maddalena-corvaglia-max-2007.esqhid.org/index.htm http://fibra-non-fare-la-puttana.mmaiuw.org/index.htm http://setter-taglia-media-razza-pura.ogttfu.org/index.htm http://a-milano-un-locale-di-ghiaccio.esqhid.org/index.htm b3e1aeebf15010c0e48986d09609c4eb
69.70.206.* 于 2007-06-17 00:07:40发表:
2297761eaf32a1cb481e7c097ddb9b45 http://domanda-di-pensione-di-vecchiaia.yssvot.org/index.htm http://tre-giorno-dopo-decesso-ritorno.ibngkc.org/index.htm http://hotel-vigo-fassa-sala-ginnastica.ixzutk.org/index.htm http://corrosione-e-protezione-dei-materiali.rvumsf.org/index.htm http://esercizio-sviluppare-muscolo-de-occhio.sdgwbd.org/index.htm http://numero-verde-assitalia-funzionante-24-24.sdgwbd.org/index.htm http://banca-credito-cooperativo-alba-langhe-roero.rvumsf.org/index.htm http://monastero-di-sant-andrea-assisi.odqknd.org/index.htm http://via-mezzo-camino-cooperativa-edile.sdgwbd.org/index.htm http://consulenti-e-commerce-emilia-romagna.sdgwbd.org/index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
66.130.152.* 于 2007-06-15 23:02:47发表:
d2e1e316b15fc037d593c8b0c1b52836 http://determinazione-affido-manutenzione-impianto-termico.asytgp.org/ http://trova-viaggio-febbraio-pacchetto-sharm.uvosok.org/ http://addio-al-celibato-hard-it.kluoca.org/ http://la-storia-della-matematica-greca.kluoca.org/ http://continente-si-trovano-isola-mauritius.dgrbxq.org/ http://terratec-scheda-acquisizione-e-tv.dkoomz.org/ http://etnopsichiatria-centro-fanon-torino-corso-formazione.asytgp.org/ http://c-p-ricorso-t-r-campania.kluoca.org/ http://trucchi-mortal-kombat-shaolin-monks.dkoomz.org/ http://ristorante-san-filippo-del-mela.dkoomz.org/ 017184126313b130655c75e326e14932
201.231.67.* 于 2007-06-14 20:51:52发表:
80d39d5cc308c5eff2f6527527cfe5ae http://www.fkrbpd.org http://nkltre.org http://www.nqdwgl.org http://gwwhof.org http://www.zzobwb.org http://www.uzgvit.org http://www.nqdwgl.org http://kcxesd.org http://www.uzgvit.org http://www.zdpnfm.org a4d20a8afbc395002366bd667860c4d3
84.122.120.* 于 2007-06-13 20:13:25发表:
326f30b3ce03547bdd72fcf9cddf1187 http://widbjf.org http://gwxvqe.org http://icqepi.org http://pdhctn.org http://jojlry.org http://www.vtqzvy.org http://wrgzjb.org http://www.kzfkps.org http://zrxllm.org http://gwxvqe.org 0f5fa03e3dca64d5b4cd330c6f860531
201.208.209.* 于 2007-06-12 21:19:43发表:
b25d2efcc5a4fe33d249f602ea205a08 http://ferro-ingrosso-san-benigno-canavese-to.rivotb.org/ http://abbandono-tetto-coniugale-tribunale-1-grado.okhyez.org/ http://memoria-al-sopra-1gb-cellulare-telefono.okhyez.org/ http://golf-1-4-benzina-1998.ammyco.org/ http://le-piu-belle-ragazze-russe.okhyez.org/ http://foggia-calcio-site-sport-msn-it.xxcgwu.org/ http://soluzione-pareri-esame-abilitazione-avvocato.kiyytw.org/ http://cooperativa-operaia-trieste-istria-friuli.xxcgwu.org/ http://delibera-cipe-21-dicembre-1996.kiyytw.org/ http://nuovo-catasto-edilizio-urbano-varese.hivfbp.org/ 416778d26f8af0e18aadb8d947bc0aec
190.38.17.* 于 2007-06-11 22:04:39发表:
093a4128996d152a05532f2234f2948f http://video-noleggio-citta-s-angelo.ljiwrk.org/ http://sito-ufficiale-winnie-the-pooh.fkgkox.org/ http://driver-leggere-dvd-scaricare-gratis.fkgkox.org/ http://puntata-de-senso-vita-proietti.fkgkox.org/ http://allevamento-di-labrador-in-campania.hzuhtu.org/ http://locale-festa-18-anno-roma.fkgkox.org/ http://foto-americani-uccisi-guerra-iraq.hzuhtu.org/ http://test-scienza-formazione-primaria-bari.guqsuy.org/ http://ristorante-taranto-provincia-cenone-capodanno.guqsuy.org/ http://codici-colin-mcrae-rally-04.guqsuy.org/ 3ebbdc0c5c788c89d957115fc277340d