1.在安装AS3.1的过程中把所有的开发包都安装,这样就不用在另外找包安装这么麻烦了.以下几个包是需要的:
compat-db-4.0.14-5.i386.rpm
compat-gcc-7.3-2.96.122.i386.rpm
compat-gcc-c++-7.3-2.96.122.i386.rpm
compat-libstdc++-7.3-2.96.122.i386.rpm
compat-libstdc++-devel-7.3-2.96.122.i386.rpm
openmotif21-2.1.30-8.i386.rpm
setarch-1.3-1.i386.rpm
tcl-8.3.5-92.i386.rpm
降低gcc和g++的版本.
mv /usr/bin/gcc /usr/bin/gcc323
ln -s /usr/bin/gcc296 /usr/bin/gcc
mv /usr/bin/g++ /usr/bin/g++323
ln -s /usr/bin/g++296 /usr/bin/g++
2.修改部分参数
#vi /etc/sysctl.conf
加入:
kernel.shmmax = xxxxx*1024*2(为内存的2倍,切换到字节。要是超过这个值,在运行dbca时会出现Ora-27123:Unable to attach to shared memeroy segment)
kernel.shmmni=4096
kernel.shmall=2097152
kernel.sem=250 32000 100 128
fs.file-max=65536
net.ipv4.ip_local_port_range=1024 65000
#vi /etc/security/limits.conf
加入:
oracle hard nofile 65536
oracle soft nofile 65536
oracle hard nproc 16384
oracle soft nproc 16384
3.建立Oracle用户
#groupadd oinstall
#groupadd dba
#useradd -g oinstall -G dba oracle
#passwd oracle
设置环境变量(/etc/profile)
export LD_ASSUME_KERNEL=2.4.1
export ORACLE_BASE=/home/oracle
export ORACLE_HOME=$ORACLE_BASE/product/9.2.0
export ORACLE_SID=test
export ORACLE_TERM=xterm
export TNS_ADMIN=$ORACLE_HOME/network/admin
export NLS_LANG=AMERICAN
export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
export LD_LIBRARY_PATH
export PATH=$PATH:$ORACLE_HOME/bin
export LANG=en_us
4.准备安装文件.(用oracle用户)
$cd /home/oracle
$cat ship_9204_linux_dis1.cpio |cpio -idmv
$cat ship_9204_linux_dis2.cpio |cpio -idmv
$cat ship_9204_linux_dis3.cpio |cpio -idmv
5.打patch(p3006854_9204_LINUX.zip)
#cd /home/oracle
#unzip p3006854_9204_LINUX.zip
#cd p3006854
#sh rhel3_pre_install.sh
6.开始安装,并按照提示以root身份执行两个sh.
7.安装结束后,打两个patch(p3238244_9204_LINUX.zip & p2617419_210_GENERIC.zip)
#cd /home/oracle
#unzip p2617419_210_GENERIC.zip
#export PATH=$PATH:/home/oracle/OPatch:/sbin
#unzip p3238244_9204_LINUX.zip
#cd 3238244
#opatch apply
$cd $ORACLE_HOME/network/lib
$make -f ins_oemagent.mk install
[说明]:p2617419的作用是提供opatch,然后p3238244能被打上,最后的重新link该文件是因为修复agentctl的错误.
8.创建数据库
$agentctl start
$注释掉$ORACLE_HOME/bin/dbca中的118,121,123,124行
$dbca创建数据库
===================================================
1.创建listener.ora($ORACHE_HOME/network/admin)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC)))
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 220svr252)(PORT = 1521))
)
)
)
IFILE = /home/oracle/product/9.2.0/network/admin/220svr252_webdb.lsr
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /home/oracle/product/9.2.0)
(PROGRAM = extproc)
)
(SID_DESC =
(GLOBAL_DBNAME = webdb.webex.com)
(ORACLE_HOME = /home/oracle/product/9.2.0)
(SID_NAME = webdb)
)
)
说明:1.HOST = 220svr252的值要和/etc/hosts中的相同.
2.创建220svr252_webdb.lsr
220SVR252_WEBDB =
(DESCRIPTION_LIST =
(DESCRIPTION =
(PROTOCOL_STACK =
(PRESENTATION = TTC)
(SESSION = NS)
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 220SVR252)(PORT = 1521))
)
)
)
SID_LIST_220SVR252_WEBDB =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = webdb.webex.com)
(ORACLE_HOME = /home/oracle/product/9.2.0)
(SID_NAME = webdb)
)
)
说明:这里DB的名称是webdb,前面加上220svr252_是为了区别,没有特别的含义和标识.
3.启动DB
$dbstart
$lsnctl start 220svr252_webdb
$sqlplus / nolog
$connect / as sysdba
$startup
=====================================
webdb 和opdb的安装基本相似.
安装完oracle后创建相应的db,这里有两个db:220svr252_webdb 和220svr252_opdb.
1.首先从sql文件中导入tablespace
sqlplus system/pass@220svr252_webdb < cr_operation_tablespaces.sql
注意:在导入这个tablespace之前,应该修改该文件中相应的信息,主要有两个地方,第一个是修改db存放的目录,然后是连接的数据库名称.
2.从sql文件中导入user,这里添加了一个test/pass的用户.
sqlplus system/pass@220svr252_webdb < cr_operation_users.sql
同样要注意,在这之前要修改该文件中连接的数据库名称.
3.防止万一,给test用户添加相应的权限.
sqlplus system/pass@220svr252_webdb
SQL>grant resource,connect to test;
4.从正常运行的数据库中导出webdb.
exp test/oracle@xxxx_xxxx owner=test log=test_web.log file=webdb.exp
5.导入该文件到新的DB中:
imp system/pass@220svr252_webdb file=webdb.exp ignore=y fromuser=test touser=test commit=Y log=imp_webdb.log
在导入的过程中,忽略一些信息,一般是说shareplex用户不存在,该用户在DB完成后安装shareplex后会产生.
opdb的方法是一样的,tablespace文件和user文件相同,不过一定要记得修改两文件中的信息.
===========================================================
现在有两个DB(oracle9i),webdb和opdb,两个DB之间有部分表需要进行复制,现在使用shareplex来实现,这两个DB都是安装在同一台box上,使用不同的Instance.
1.运行安装文件,该文件需要在root用户中使用.
#./SharePlex_Oracle-5.1.0.511-Linux-x86-Oracle92.run
根据提示,把shareplex和data分别安装在/opt/shareplex/product和/opt/shareplex/vardir目录中.
[注意]:在/etc/hosts中配置正确的hostname.
2.建立复制端口的相关文件.这里使用8000做为复制端口.
2.1.建立目录
#mkdir /opt/shareplex/vardir/splex8000
#cp -rf /opt/shareplex/vardir/* /opt/shareplrx/vardir/splex8000
2.2.建立tablespace.
CREATE TABLESPACE splex8000 DATAFILE
'/home/oracle/oradata/opdb/splex8000.dbf' SIZE 50M AUTOEXTEND ON NEXT 100M MAXSIZE 1000M
LOGGING
ONLINE
PERMANENT
EXTENT MANAGEMENT LOCAL AUTOALLOCATE
BLOCKSIZE 8K
SEGMENT SPACE MANAGEMENT MANUAL;
同样为webdb建立同样一个tablespace文件,并导入对应的库中.
2.3.生效splex8000
#SP_SYS_VARDIR=/opt/shareplex/vardir/splex8000 export SP_SYS_VARDIR
#cd /opt/shareplex/product/bin
#./clean_vardir.sh 9.2.0
(9.2.0是oracle的版本,这个在安装shareplex的时候有提示)
3.配置shareplex.
#su - oracle
#cd /opt/shareplex/product/bin
#ORACLE_SID=opdb export ORACLE_SID
#./ora_setup
在配置过程中,要求为shareplex的运行选择tablespace,不要使用默认值,除了temp外,其余的都使用新建立的splex8000.
[注意]:在这个配置过程中,安装程序会使用sqlplus登录DB,并且使用"connect / as sysdba"连接数据库,而ora_setup本身的属性是s,所以它是以root身份去sqlplus的,如果你们DB在root帐号下无法使用"connect /as sysdba",那么这个安装就无法进行下去,总是提示用户和密码不正确,解决方法就是:chown 755 /opt/shareplex/product/bin/*,chown oracle.oinstall /opt/shareplex/product/bin/*.
4.启动和使用shareplex.
4.1启动shell是:
#!/bin/sh
echo "Starting splex [port=8000 vardir=/opt/vardir/splex8000]"
SP_SYS_VARDIR=/opt/shareplex/vardir/splex8000
export SP_SYS_VARDIR
SP_COP_TPORT=8000
export SP_COP_TPORT
SP_COP_UPORT=8000
export SP_COP_UPORT
/opt/shareplex/bin/sp_cop -u8000 &
echo "Has been starting splex port=8000"
4.2.使用shareplex.
#/opt/shareplex/product/bin/sp_ctrl
sp_ctrl >port 8000
[注意]:因为两个DB是安装在同一台box上的,所以启动一次shareplex而且使用相同的端口8000就可以了.
5.配置表的复制.
5.1.OPDB-->WEBDB
#cat /opt/shareplex/vardir/splex8000/config/op2web
datasource:o.opdb
test.CONFLICENSEINFO test.CONFLICENSEINFO 220svr252@o.webdb
#cat /opt/shareplex/vardir/splex8000/config/web2op
datasource:o.webdb
test.CORCONTACT test.CORCONTACT 220svr252@o.opdb
5.2.激活这两个文件.
sp_ctrl > activate config op2web
sp_ctrl > activate config web2op
190.46.130.* 于 2007-06-25 19:25:49发表:
d3f907246c00dba774b9980b6e9a4eca http://vassallo-eduardo-giffoni-valle-piana.xfnqjv.org/ http://giocarevecchiogiocodosxp.gydeyj.org/link-http-free-game-forumcommuni/ http://dove-si-trovano-sedi-dei-quotidiano.ddbpnz.org/ soluzione trucco neverwinter nights 2 http://downloadgratisneroexspress7.wnoohz.org/racconto-harry-potter-fanforum-fanfiction/ http://patete-nautica-entro-12-miglia.abpato.org/ http://carmenelectravacanzanatale2000.ggrflx.org/grottaglie-palazzetto-it-don-minzoni/ http://il-signore-degli-anelli-il-ritorno.xfnqjv.org/ tecnologia copiare neo compito classe http://manuale-d-officina-honda-cbr-600.xfnqjv.org/ 245153f8fc5ca6b7c7f1325ac3918a81
83.32.254.* 于 2007-06-24 17:58:36发表:
190e16555af7dc6bbde47b5b05852aa7 http://manuale-italiano-samsung-sgh-i320n.vogryu.org/ http://comune-santa-maria-capua-vetere.ztbpeb.org/ http://fame-alan-parker-trama-film.fdkwms.org/ http://giornale-di-annuncio-economici-marche.ztbpeb.org/ http://contratto-con-gli-italiani-berlusconi.nbjnpk.org/ http://converseallstarhiyth.yiatbe.org/piano-regolatore-generale-comune-trapani/ http://piattotipicotrentinoaltoadige.savnjk.org/vocabolario-lingua-ceca-italiano-gratis/ http://compensazione-credito-iva-in-f24.blzjgn.org/ http://www-nazionale-italiana-di-rugby.blzjgn.org/ http://mercatinodellantiquariatoprovinciapadova.shopio.org/corsi-di-ballo-latino-americano-milano/ 452262cf741011e1ab8f1c4bc30a15a9
84.75.183.* 于 2007-06-23 17:29:57发表:
63609ee77bb03df5e1965fcfb6f76d16 http://milan-lione-04-04-2006.mjhbun.org/ http://vendita-on-line-di-prodotti-informatici.wyhedi.org/ http://fieradiromacalendario2006.inpusz.org/canzone-the-lion-sleeps-tonight/ http://tortadipasquaalformaggio.bkejls.org/calciatore-napoli-calcio-anno-2003-2004/ vendita albero natale fibra ottica http://ancora-volta-purtroppo-servizio-pubblico-televisivo.kesdip.org/ http://societa-ricerca-quadro-aziendale-milano.kesdip.org/ http://fotopornodonnaanzianagratuita.bkejls.org/bed-and-breakfast-arta-terme/ http://agatha-christie-non-rimase-nessuno-soluzione.vjsvzo.org/ http://abito-da-sposa-domo-adami.xrndwe.org/ 9552dfe41baaa9f17aeb9f3e17cab334
220.71.75.* 于 2007-06-22 14:42:56发表:
396dc16af66c5710948d93698fe93739 http://tutto-sesso-gratis-zie-fottuta.ojfmto.org/ http://nondiregattononcesacco.qurqnr.org/calcolo-marca-contratto-d-inserimento/ http://l-ecco-di-bergamo-it.ojfmto.org/ ristorante al gallo rosso iseo http://telefonocordlesssiemensgigasetsl100.ibiwol.org/liceo-primo-levi-san-floriano-verona/ http://risultatopartita200607campania.qurqnr.org/calcolo-pensione-sistema-contributivo-sistema-retributivo/ http://yugiohcodicips1.ibiwol.org/la-squadra-di-bowling-alley/ http://piantinamuseoarcheologiconazionalenapoli.ibiwol.org/per-me-si-va-nella-citta/ http://rinnovo-concessione-impianto-distribuzione-carburante-localizzazione.jvvvdm.org/ http://biancheria-casa-rovellasca-provincia-como.zivzdt.org/ 8d0a7cd2b17a8f039de7dab06d2ae220
200.114.248.* 于 2007-06-21 09:25:06发表:
0f33be3a99203ebae7e0bf1f070b91f2 http://scaricare-biglietto-d-augurio-compleanno-bambino.kzsfzp.org/ http://numero-verde-patente-a-punti.wdrksm.org/ http://soluzione-prove-scritta-esame-avvocato-2006.rfnfwr.org/ http://agenda-21-locale-filetype-pdf.tiabis.org/ http://nuova-cambio-automatico-auto-nuova.tiabis.org/ http://scaricare-porta-socchiusa-ai-confini-sole.cmuvxp.org/ http://6.ovetzi.org/dream/theme/ecstasy.html http://scarica-gratis-gioco-nokia-6600.lvnrii.org/ http://svolgimento-tema-esame-stato-architetto.kzsfzp.org/ http://esame-ecdl-modulo-2-quiz.axbzdu.org/ 3281355dcdf7961a81348339c85b8f61
190.50.141.* 于 2007-06-20 07:37:44发表:
08a07e55ee3042715e99a95c5bab695d http://cartone-animato-evelin-anno-80.sjfxge.org/index.htm http://arturo-ex-giocatore-football-americano.mqpgvv.org/index.htm index.htm http://scuola-di-infermiera-professionale-di-torino.hzsssu.org/index.htm index.htm http://ford-fiesta-5-porta-diesel-1400.vwdrxg.org/index.htm index.htm http://proposte-immobiliare-villa-pomigliano-d-arco.oizdoo.org/index.htm http://marzo-1821-di-alessandro-manzoni.qafifx.org/index.htm http://risultato-concorso-pubblico-ministero-difesa.mqpgvv.org/index.htm a95af8f224b8c9334b8122ef4b45f39a
84.123.112.* 于 2007-06-19 06:23:06发表:
f4ed997669a75e84ad43eda90d83e1df index.htm index.htm index.htm http://computo-metrico-per-un-tetto.bpdwtu.org/index.htm index.htm index.htm http://bando-gara-fornitura-gasolio-ufficio-comunale.nudmpy.org/index.htm http://mandato-di-vendita-in-esclusiva.aenjba.org/index.htm http://hotel-stella-d-italia-rimini.ugbiie.org/index.htm http://immagini-gratis-di-donna-pelose.csjstn.org/index.htm b8055c662679464e43a32265312932f9
190.72.244.* 于 2007-06-18 05:40:44发表:
3e33e3e9a3d6b58441d02790cf6e4b64 http://creare-documento-master-word-2000.lwfhrb.org/index.htm http://cerca-prezzo-forno-rex-fs-50x.ogttfu.org/index.htm index.htm http://il-codice-da-vinci-il-film.lwfhrb.org/index.htm http://donna-italiana-grande-tetta-gratis.glzaqv.org/index.htm index.htm http://ragazza-combattenti-combattono-ragazza-video.zpympv.org/index.htm index.htm http://casse-creative-gigaworks-thx-s750.ovnfxu.org/index.htm http://galleria-d-arte-franco-cancelliere.ovnfxu.org/index.htm b3e1aeebf15010c0e48986d09609c4eb
201.209.56.* 于 2007-06-17 04:14:55发表:
a0a35f3c6a8084968ad93893057da5e6 http://legge-675-del-31-12-1996.zfdyqr.org/index.htm http://testi-e-accordo-di-ron.odqknd.org/index.htm http://beppe-grillo-a-reggio-emilia.zfdyqr.org/index.htm http://bolzano-elenco-comune-alta-densita-territoriale.zfdyqr.org/index.htm http://inps-riconosce-liquidazione-dipendente-privato.ixzutk.org/index.htm http://mercante-fiera-numero-carta-gioco-raccolta.rvumsf.org/index.htm http://d-p-r-1063-62.zfdyqr.org/index.htm http://deroga-al-disposto-dell-art-1957.zfdyqr.org/index.htm index.htm http://dragon-ball-z-eroe-pianeta-conuts.zfdyqr.org/index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
201.248.199.* 于 2007-06-16 02:59:50发表:
4b606b061764d99eb0007ff0318e1ac0 http://come-funziona-la-posta-elettronica.asxhjv.org/ http://cerchio-lega-17-mini-supernova.dkoomz.org/ http://legge-27-giugno-2003-n-151.dgrbxq.org/ http://elenco-paese-non-comunita-economica-europea.dgrbxq.org/ http://servizio-sociale-sicilia-baby-parking.dkoomz.org/ http://colonna-sonora-film-natale-india.asytgp.org/ http://alfa-147-virtual-club-forum.asxhjv.org/ http://produzione-mobile-d-arte-classico-padova.uvosok.org/ http://cartuccia-compatibile-hp-psc-1350.dgrbxq.org/ http://numero-verde-sapere-punto-patente.uvosok.org/ 017184126313b130655c75e326e14932
190.30.30.* 于 2007-06-15 01:24:31发表:
ed47a1848a22efaf900b58a1ccd7f350 http://www.kcxesd.org http://www.gwwhof.org http://www.fkrbpd.org http://zdpnfm.org http://zdpnfm.org http://www.kcxesd.org http://nkltre.org http://zdpnfm.org http://www.zzobwb.org http://www.uzgvit.org a4d20a8afbc395002366bd667860c4d3
200.109.173.* 于 2007-06-14 00:02:50发表:
c2258fb4bf16ccdc148bd0eb2392d719 http://xgjrbe.org http://gwxvqe.org http://exxhfd.org http://hovmug.org http://eyfgwa.org http://www.jojlry.org http://wrgzjb.org http://www.exxhfd.org http://widbjf.org http://www.eyfgwa.org 0f5fa03e3dca64d5b4cd330c6f860531
201.208.243.* 于 2007-06-13 01:03:28发表:
713df206ef823a95e89f91ca65436d59 http://sviluppo-italia-engineering-s-p.kiyytw.org/ http://listino-stampa-digitale-listino-plotter.kiyytw.org/ http://agriturismo-zona-viareggio-capodanno-economico.yvzcyb.org/ http://spettacolo-teatrale-lugano-11-novembre-2006.hivfbp.org/ http://trucco-dark-alliance-2-xbox.okhyez.org/ http://nudo-proprietario-si-sposa-vuole-casa.yvzcyb.org/ http://chiesa-santa-maria-della-catena.xxcgwu.org/ http://film-ti-presento-i-miei.okhyez.org/ http://corso-aggiornamento-sci-insegnante-ed-fisica.ammyco.org/ http://mutuo-casa-cassa-risparmio-firenze.rivotb.org/ 416778d26f8af0e18aadb8d947bc0aec
201.212.112.* 于 2007-06-12 02:03:51发表:
a086eff9409ad132d4728931014cf6ac http://chianti-metropoli-14-novembre-2006.guqsuy.org/ http://legge-196-cosa-prevede-scuola.fkgkox.org/ http://apple-ipod-30-gb-nero.guqsuy.org/ http://ministero-dell-lavoro-modena-it.dtufrq.org/ http://maria-de-filippi-it-nuda.guqsuy.org/ http://corso-formazione-professionale-tattoo-piercing.guqsuy.org/ http://i-racconti-di-padre-brown.guqsuy.org/ http://negozio-vendita-attrezzatura-sportiva-torino.dtufrq.org/ http://sacchi-a-pelo-per-bambini.guqsuy.org/ http://scarica-slot-macchina-black-slot.uoyrgt.org/ 3ebbdc0c5c788c89d957115fc277340d
201.255.128.* 于 2007-06-11 02:01:17发表:
86456b3049ef015a78c98371bf6109d8 http://vigo-fassa-hotel-3-stella.kfxrfs.net.in/ http://comune-di-colloredo-di-montalbano.mksqkw.net.in/ http://le-piu-belle-fiche-del-mondo.oaxzml.net.in/ http://servizio-civile-ospedale-san-martino-oristano.mksqkw.net.in/ http://casa-amica-sito-rivista-casa.mksqkw.net.in/ http://legge-21-3-90-n.mksqkw.net.in/ http://codice-procedura-civile-art-404.mksqkw.net.in/ http://cassa-nazionale-previdenza-e-assistenza.mksqkw.net.in/ http://22-ottobre-2004-n-270.hhknox.net.in/ http://vendita-on-line-cd-musicale.oaxzml.net.in/ 319dbbb4ab069a1bfb4a4d4d12c61dcd
201.242.111.* 于 2007-06-10 01:40:20发表:
fc14962a141c78c48fa36c8f79f3bf8a http://scarica-gratis-messenger-live-plus.oaxzml.co.in/ http://blog.myspace.com/196097101 196093926 http://blocco-del-traffico-domenica-26.oaxzml.co.in/ http://blog.myspace.com/196093926 http://curriculum-vitae-capacita-caratteristica-personale.ooqqld.co.in/ http://spears-news.blogspot.com/ http://britney-official-site.blogspot.com/ http://computer-accedere-posta-bisogna-registrarsi.hhknox.co.in/ 48c0bb0f30b00789fa1734f152bbea8f
217.199.102.* 于 2007-06-09 01:38:56发表:
0175d03ae9d978f7502d5ed73c742403 http://comune-di-san-giorgio-albanese.qjgasd.org/ http://master-2006-2007-scienza-naturale.iumzde.org/ http://barca-vela-affitto-lago-garda.akermn.org/ http://baltimora-fell-s-point-maritime-museum.lbpwqo.org/ http://video-cattura-provenzano-tg-sky.lbpwqo.org/ http://opera-d-arte-on-line.pauhzy.org/ http://tesi-laurea-giurisprudenza-alberto-patron-padova.mbxbva.org/ http://protezione-solare-sicura-al-100.mbxbva.org/ http://pechino-great-wall-at-simatai.qjgasd.org/ http://indirizzo-video-24-torretta-savona.mbxbva.org/ e44c2d91c99facb894d3b26e91151560
200.93.11.* 于 2007-06-08 03:28:59发表:
c429ca80d8de78a72083cf73a0a5ce10 http://scuola-lingua-estere-dell-esercito.incgek.org/ http://agriturismo-toscana-vicino-al-mare.fjhozm.org/ http://apostrofo-rosa-fra-parola-t-amo.rpddkk.org/ http://ristorante-la-vela-torre-del-greco.whguhs.org/ http://alla-ricerca-di-nemo-2.tpfcwv.org/ http://tassi-di-interesse-nell-area-euro.ivrfxb.org/ http://acquisto-appartamento-colle-di-tora.ouwnql.org/ http://compilare-il-mod-730-2006.zouvtz.org/ http://cose-non-cose-non-potuto-mai.zouvtz.org/ http://assistenza-legale-gratuita-assegno-mantenimento.fjhozm.org/ 2e2f8656ca7971267ae7180fc612fe21
190.39.215.* 于 2007-06-07 06:10:01发表:
c480179e0970ab5b03929c73ec7c5a9b http://contratto-nazionale-commercio-settore-turismo.odkgrg.info/ http://soluzione-prova-esame-scritto-avvocato-2006.ytqkdb.info/ http://codice-sblocco-motorola-3-e1000.dpydtd.info/ http://accordo-behind-blue-eye-limp-bizkit.ytqkdb.info/ http://auto-targa-straniera-patente-italiana.vrnzgy.info/ http://lamezia-terme-torino-biglietto-aereo.ytqkdb.info/ http://video-ronaldinho-r10-gratis-it.vdamgw.info/ http://simbolismo-dei-colore-comunicazione-visiva.odkgrg.info/ http://d-lgs-504-95-art-26.zjtbra.info/ http://penale-omissione-clausola-non-trasferibile.gjtkci.info/ 6dea66dd0952ca77d762129bda0df247
70.80.234.* 于 2007-06-05 14:18:31发表:
0b672d3cd714748e4c59867536d6b098 http://negozio-abito-sposa-sarli-napoli.uyohtb.info/ http://laica-bf-2054-bodyfat-bodywater.dhvvfi.info/ http://land-rover-discoveri-usato.uyohtb.info/ http://interfaccia-alpino-cd-changer.dhvvfi.info/ http://navigatore-satellitare-magneti-marelli.wkermn.info/ http://trucchi-crash-ctr.fwpjkf.info/ http://decomprimere-mdf.fwpjkf.info/ http://videocamera-fogna.dhvvfi.info/ http://tettona-decima-misura.uyohtb.info/ http://fondriest-usata.kbucdn.info/ 4080af707aca2bbb96231fb1b4743d28
88.164.137.* 于 2007-06-04 19:45:37发表:
7f632f101536fb7029e9758deb9655ca http://locale-donna-numero-friuli-venezia-giulia.dlmpxx.org/ http://digitale-terrestre-hard-disk-mhp.nfvzoo.org/ http://ospedale-vittorio-emanuele-di-catania.divuvu.org/ http://legge-fermo-amministrativo-cartella-immettere.dqiqbg.org/ http://virna-lisi-gabriel-garko-fiction.dqiqbg.org/ http://collezione-francobolli-rsi-e-luogotenenza.xcwjal.org/ http://griglia-o-scheda-orientamento-scolastico.vprmbs.org/ http://cane-padroni-cane-posso-stringervi-mano.pgbdyc.org/ http://decreto-27-gennaio-1998-25.pgbdyc.org/ http://sotto-corte-marziale-hart-s-war.vprmbs.org/ e2344a7b53a49ae4d6fdb2a64dbf9945
88.7.42.* 于 2007-06-04 00:01:55发表:
d38ab77414ddbff14466b647965cf5fe elenco abbonati telefono acilia roma testo protocollo intesa comune luminaria natalizia curare iaculazione precoce http://rubinettohansa.seyzuo.org/ragno-metanodotti-misura/index.htm disattivare trust smart http://recordatiamianto.inkrxe.org/elicottero-ultra-leggero-kit/index.htm profumo schiapparelli http://prevenditebrignano.inkrxe.org/flou-lombardia-spaccio/index.htm ragazza grassa biellesi lavin lavanderia industriale 83869c431dabc6ba13fe3e3c64cc8ac5
80.35.199.* 于 2007-06-03 06:11:46发表:
bae0a3aa2dc785fccd187dea617ee3c2 http://steleprestino.sdibjo.org/trucco-ps2-canis-canem-edit-gratis/index.htm nucleo tremmista compro kit estetico wrc immobiliare mattiello aversa via roma http://strageinnocenteguidorene.sdibjo.org/accessorio-inox-funi-metallica/index.htm http://civettaapparatodigerente.ksibgs.org/cammino-neocatecumenale-martire-canadesi-roma/index.htm bar mecky torbole http://giovanetteculolargo.ksibgs.org/rivenditore-meindl/index.htm http://automotomaniaromaviasimonemartini.ksibgs.org/risolutore-ottimizzazione-risorsa/index.htm inferriata avvolgibile edilizia privata 691e5261e7f26fe9bfca38d324fb1940
200.93.80.* 于 2007-06-02 10:20:16发表:
df0ba1812c4d186e4d3bdb093cfc077e esiti gara mafra srl http://indirizzoosteopaticagliari.beajbg.org/brigante-ciociari/index.htm prendere legioni chaos of legion http://startopiasoluzione.inkrxe.org/nipoti-montano-vecchia-nonna/index.htm eliminare fastrack http://parallelismoflangemacchinarotanti.inkrxe.org/gravidanza-trasfer-solo-embrione/index.htm http://annalisascaraffiatorino.seyzuo.org/macchina-cadilac/index.htm http://marcianuzialemendelshon.akqcvy.org/artel-servizio-s-r-taranto/index.htm tendaggio carre http://giuliocozzolibiografia.nlamku.org/elizabeth-jagger-ribelle/index.htm 63aa5c5d6850cbd0ab7a0b3644130d9e
201.248.64.* 于 2007-06-01 15:45:55发表:
f96027387e0277720c2d46eb6a835470 http://capiletteregoticheimmagine.mljuyb.org/prezzo-teuco-284/index.htm http://topcollegescomvscholarshiphtml.leikrf.org/salumificio-fratello-beretta/index.htm http://servletinterrogazionidb.gkgobd.org/tressette-scarica-gratis-windows-2000/index.htm http://uomovenutolontanominghimp3.gkgobd.org/cosa-fa-zapu/index.htm cjac jesi http://stufasupercalorgas.uzghnh.org/bella-coppia-comodino-mogano-liberty/index.htm http://arnicacompostofiale.mljuyb.org/spartito-sorabji/index.htm rimozione kaboom http://camaleontecamole.gkgobd.org/avana-estadio-latinoamericano/index.htm http://lamiaparteintolleranteokapi.uzghnh.org/giocattolo-legno-asino-dondolo-trainabile-peppo/index.htm 5447788e0ee79eeca3d64876f41eb1cf
201.244.118.* 于 2007-05-30 07:59:37发表:
83996fda416afdc1c2bfc8102034de20 http://mnopyi.org/igreja/igreja-internacional-graca-taubate.html receita acayaba.txt pq http://mnopyi.org/tj/tj-paraiba.html a roupa http://wfcqxw.org/futuros/futuros-projeto-sao-paulo.html vidios http://mnopyi.org/atacadista/atacadista-doce-campina.html a91f06099d8916d08fc86aebeef191c8
200.90.71.* 于 2007-05-29 06:42:46发表:
e5d6b955c1b1a9f50a04721ec76ada63 delegacia supletivo show surgimento http://xwqumn.org/relogio/relogio-parede-carrilhoes.html http://xwqumn.org/significado/significado-das-cor-da-bandeira-do-brasil.html marcio caracteristicas http://xwqumn.org/secretaria/secretaria-municipal-educacao-betim.html http://xvqeoy.org/ministerio/ministerio-da-agricultura-em-mato-grosso.html ea84313ff4cf4b8bb8ec851c693c83a5
213.60.105.* 于 2007-05-28 14:37:23发表:
aa39eb3495137e538c97cf2154cdc5a6 http://grpytd.info/elevador/elevador-monta-carga-porto-alegre.html http://grpytd.info/associacao/associacao-comercial-industrial-mogi-cruz.html http://xvqeoy.info/mulher/mulher-estupro.html webmail emitindo.txt http://ifrtox.info/folha/folha-fortuna-saiao.html existe http://xvqeoy.info/esquema/esquema-tocom-placa-tv-free.html saude http://mnopyi.info/prevestibular/prevestibular-gratuito.html 921da3b25f91ff5411abb8e73f72697f
24.37.39.* 于 2007-05-27 22:56:54发表:
ce94e1d3163950546452ae4e31003206 prefeitura camara prefeitura canto assistencia comunidade imobiliaria literatura lista o 6d9dd05b81c19c63ae8e87cbbcfe2050
201.213.95.* 于 2007-05-27 06:47:57发表:
7e30396598a6abe85e3024bcab30a85e maior manutencao imobiliaria jogo livr site numero jogo ourico ver 899833c87d41a40d77c99858b4681e10
217.126.32.* 于 2007-05-26 16:40:07发表:
984ded83f3619be00ede51c41e8168f3 cafe deficiencia sitio pompoarismo chat hormonio historia eita buraquinho.txt nadador 3c6c60ce2277246c0f4063c97808fccb
190.57.16.* 于 2007-05-26 00:42:19发表:
725d0a0430c67fdc63dfc26a2d70f424 http://ape-maya-sigla-testo-katia-svizzero.qumpvr.org/ http://uhttp-www-pagina-bianca-it.lxcjch.org/ http://pisciata-bocca-succhia-cazzo-sborrata-faccia.lxcjch.org/ http://prezzo-memory-card-samsung-sgh-zv40.mbduev.org/ http://ralph-lauren-polo-manica-corta-uomo.sfmyzx.org/ http://centro-commerciale-san-paolo-fuorigrotta.mbduev.org/ http://installatore-non-rilascia-dichiarazione-conformita.pmdxoz.org/ http://il-fantastico-mondo-del-fantastico.mbduev.org/ http://annuncio-vendita-motore-marino-usato.itwasb.org/ http://pubblico-lavoro-autorita-pubblico-lavoro-autorita.nuusjq.org/ f4e92eaca3a0992e5377af9d5fb45ea4
84.122.98.* 于 2007-05-25 04:45:08发表:
726a3d118147a815dbe7a71517aa0169 http://web-acquisto-asta-auto-usata.rsxmtx.org/ http://foto-di-san-tommaso-d-aquino.lwozoc.org/ http://corte-d-appello-di-cagliari.hgfrvc.org/ http://non-si-dicono-bisogna-scoprirlo.rsxmtx.org/ http://lezione-d-inglese-istituto-turistico.ljznde.org/ http://gta-vice-city-trucchi-pc.lwozoc.org/ http://l-importanza-di-chiamarsi-ernesto-atto.ikqtqu.org/ http://asus-site-www-tomshw-it.hgfrvc.org/ http://esercizio-da-fare-in-casa.xrpkif.org/ http://xp-non-riconosce-muvo-v200.rsxmtx.org/ 46517f671cf87061af6ace763c7eda9d
88.24.187.* 于 2007-05-24 12:41:43发表:
ebdec303f6985adfd6996beb4283f7bb http://pannello-sandwich-cemento-abbattimento-acustico.pmdxoz.org/ http://scuola-d-inglese-a-londra.pmdxoz.org/ http://testo-canzone-vucchella-d-annunzio.mbduev.org/ http://scuola-dell-infanzia-comune-milano.mbduev.org/ http://guida-utilizzare-paint-shop-pro-x.sfmyzx.org/ http://occupazione-immobile-uso-abitazione-titolo.itwasb.org/ http://paros-antiparos-business-hotel-for-sala.nuusjq.org/ http://catlearn-reader-1-0-4.sfmyzx.org/ http://amplificatore-cassa-pod-nano-logitech.lxcjch.org/ http://video-finale-dei-mondiale-2006.nuusjq.org/ 7798902e03c54f1db3af807b5937ee1b
201.243.138.* 于 2007-05-23 19:56:24发表:
10d4241aad71cce2d5bbe1072205a958 2005 08 07.html 2005 10 07.html 2005 07 21.html 2005 07 08.html 2005 10 04.html 2005 08 22.html 2005 07 04.html 2005 09 10.html 2005 09 18.html 2005 09 08.html e7000c4d06986984b665ec9d15ae719a
201.245.240.* 于 2007-05-16 03:19:21发表:
http://6e5640ea4f600f626238151e22f9039e-t.qwoypw.info 6e5640ea4f600f626238151e22f9039e http://6e5640ea4f600f626238151e22f9039e-b1.qwoypw.info 6e5640ea4f600f626238151e22f9039e http://6e5640ea4f600f626238151e22f9039e-b3.qwoypw.info b43a48a848da56275457e93295654b68