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
76.20.38.* 于 2007-09-07 02:21:34发表:
208f8fe1269dc7ba05a37e29573e7ce2 http://ministerouniversita.ipywer.org/disegno-legno/ http://freud-sviluppo-dell-io-bambino.yavpvy.org/ http://anziani-veneto.hhidlx.org/ http://ron-e-tosca.hhidlx.org/ http://aziendainformationtechnologymilanoprovincia.yufywt.org/quattroruote-prezzi/ http://fotolagofatamacugnaga.ukcvbo.org/senso-vita-trasmissione-bonolis/ http://vendita-case-treviso.ufftiy.org/ http://trans-video-anteprime-gratis.vozlau.org/ http://house-classifica-elektro.yavpvy.org/ http://noleggiareferrar1giorno.yufywt.org/informa-giovane-sondrio/ ef5da0821261872f3a177fbd4ce2e9fc
190.49.11.* 于 2007-09-06 09:09:34发表:
3478918253d318727b439434b94823f0 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 d950163e2bc04fe30175aa17834ab13d
70.20.107.* 于 2007-09-05 20:16:13发表:
49357c6bc218a2e71ddea00593815f13 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 db62d9d137e7999ef0c8bbd27991ea41
84.103.16.* 于 2007-09-05 05:58:52发表:
8c65794d5566ba7985c8bd7ce0e95711 http://armoniche-bocca-hohner.dfmviz.info/ http://ginecologi-roma.dfmviz.info/ http://albergo-nizza-monferrato.dfmviz.info/ http://targa-trofeo-vendita-on-line.dfmviz.info/ http://lineamento-legislazione-sociale.dfmviz.info/ http://sabato-sera-imola.dfmviz.info/ http://adamo-eva-paradiso-terrestre.dfmviz.info/ http://suoneria-samsung-sch-p510.dfmviz.info/ http://copertina-sella-moto.dfmviz.info/ http://imparare-armonica.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
201.46.241.* 于 2007-08-21 01:30:47发表:
wgfAn6 vzazcezimmmj, mtpvhahoaxkw, [LINK=http://hzjwcjkoferh.com/]uojhcbnsskod[/LINK], http://usizkpydinho.com/
216.244.231.* 于 2007-08-19 03:05:44发表:
Good design. I liked this site, it's neat. Good job! Would you please also visit my site?
0.0.0.* 于 2007-08-18 05:51:32发表:
Very well! Your site is neat! Please visit my homepage too:
69.248.79.* 于 2007-08-16 19:58:43发表:
You have a very nice site. Other interesting resources
83.11.233.* 于 2007-08-16 02:45:49发表:
8f35cb18ed8c16013338c1d21a43350c http://schema-lavori-uncinetto.zpvztz.com/ http://chef-massimo-spigaroli.akrmtn.com/ http://modulistica-locazioni-commerciale.flroxk.com/ http://anunci-gratis-incontro-russa-gratis.flroxk.com/ http://napoli-calcio-storia.akrmtn.com/ http://beghelli-accessorio-personal-care.akrmtn.com/ http://mafia-bianca.flroxk.com/ http://schema-elettronico-ricevitore-onda-lunga.flroxk.com/ http://timbro-targa.flroxk.com/ http://pia-casa-lavoro-montedomini-firenze.zpvztz.com/ f79720dbd018955dfd9068d527cd2031
74.193.139.* 于 2007-08-16 01:12:14发表:
Thanks for the good site and usefulinfo. I found
56.0.84.* 于 2007-08-15 03:40:00发表:
I am very impressed how you can build webpages! Visit my sites, please:
0.0.0.* 于 2007-08-13 13:43:29发表:
Great looking site so far!! I'm just starting to look around it but I love the title page! map usa mapquest swiss replica watch replica chanel earring uh oh replica purse easy pic world wide sex guide free lesbian xxx louis vuitton replica replica shoes louis vuitton replica ha mapquest italy free maps driving directions mapquest shemp pics 89 video clip interracial sex xxx business name mapquest city local maps replica designer handbag xxx teen movie driving directions mapquest msn maps
0.0.0.* 于 2007-08-12 13:35:26发表:
I am very impressed how you can build webpages! Visit my sites, please: map direction in spanish how to use a compass world war 1 europe map airline compass google world map world continent map world religion map compass ring city map directions bank banking compass login online direction on map uk direction golf map get map direction jeep compass chart your success on the compass test cayman compass direction driving map mcnally rand military compass compass course mariners new new new new pattern process project quilt setting using a compass
210.248.248.* 于 2007-08-12 04:31:18发表:
Hi everybody! Wanna see my cool pages? Would you please also visit my homepage? direction driving free mapquest driving directions mapquest mapquest 1 1 1 417 mapquest top direction driving fl mapquest yahoo google direction mapquest driving direction canada mapquest company basic direction easy fit follow garment knitting size tears technique without blast direction driving map mapping ww mapquest com mapquest toronto rand mcnalley driving direction direction driving map map mapquest usa australia direction driving aol direction driving mapquest truck route get driving direction mapquest california mapquest canda
0.0.0.* 于 2007-08-10 08:14:20发表:
I just want to say thank you for taking the time & effort for put this web page together! texas state map cities compass rose table thailand map with compass rose map of counties in california california counties map san diego lake city florida map mapquest alberta canada city map of cayucos california free state maps florida city map jacksonville florida east texas map act compass practice tests jacksonville florida map picture map of the world smith county texas maps msn maps birds eye view compass rose images free california state map disney map property world world map
68.7.57.* 于 2007-08-09 23:34:44发表:
Greetings to the author of this page. Nice site, keep up the good work mapquest uk directions international mapquest mapquest on mexicali mexico activities to teach following directions travel directions map destination map of california counties map florida panhandle map travel driving direction msn driving directions compass rose designs travel directions usa online world map mapquest driving directions maps travel directions east texas map go driving directions interactive map of europe printable map of europe state of california map
0.0.0.* 于 2007-07-31 07:01:48发表:
http://famous-people.t35.com/name20/vinessa-shaw.html
190.22.98.* 于 2007-07-26 01:07:55发表:
4d0e3a3c330463ee6d8db60ed3b003e7 http://cinema-orbetello-grosseto.fmyrxs.biz/ http://sito-roman-polanski.cuxojo.biz/ http://scarica-screensaver-acquario-gratis-pc.txcbmz.biz/ http://case-vacanza-ravenna.txcbmz.biz/ http://calciatori-tedeschi.txcbmz.biz/ http://forni-per-tempra.smtpld.biz/ http://pesce-rosa-mare.smtpld.biz/ http://brugnato-blu-pietra.cuxojo.biz/ http://masseria-a-gallipoli.cuxojo.biz/ http://associazione-peperoncino.zqemjp.biz/ f0bd15bc4c04b02533089147dbde4c5b
87.118.187.* 于 2007-07-25 19:00:37发表:
97c1bf76e0355c79ea822c3374ef035d http://riso-pilaf-pollo-al-curry.pzgvuv.biz/ http://venezia-livorno.pzgvuv.biz/ http://liceo-scientifico-aeronautico-chieti-pescara-informazione.mbgzfn.biz/ http://posta-prioritaria-tempo-consegna.ytxxxk.biz/ http://mangiafuoco-roma.ytxxxk.biz/ http://veicolo-commerciale-usati-furgoni.mbgzfn.biz/ http://spumante-bicchiere.joyubb.biz/ http://gruppo-bullone-spezia.ggjrfj.biz/ http://della-musa.ggjrfj.biz/ http://centralina-elettroniche-auto-scheda-tecnica.ggjrfj.biz/ bfdd7bec9230a10317341e982495b689
220.219.234.* 于 2007-07-24 21:32:10发表:
d9dc6a7353ddfb140bd6d40699f83e2d http://asep-s-p-porto-mantovano.tzlnou.biz/ http://computer-grafica-corso-estivo-napoli.tzlnou.biz/ http://gothic-2-patch-ita.tzlnou.biz/ http://sardegna-canta.zibtye.biz/ http://dafne-fernandez-nuda.ygvhik.biz/ http://vogliosa-cazzo-natasha.ygvhik.biz/ http://screensaver-animato-pc.zibtye.biz/ http://avviso-pubblico-veterinario.iuatju.biz/ http://biglietto-augurale-bambino.iuatju.biz/ http://asta-flessibile-microfono.iuatju.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
59.5.3.* 于 2007-07-23 11:57:55发表:
d1145ebdcde514da76d4efe2feaa8179 http://we-are-the-world-angolo-testo.jnbwct.org/ http://midi-kar-di-mina.gbdrme.org/ http://turismo-zurigo.jnbwct.org/ http://corso-comunicazione-ed-immagine-brand-identity.gbdrme.org/ http://assolutamente-gay.jnbwct.org/ http://articolo-stampa-gruppo-bertone.jnbwct.org/ http://agenzia-viaggi-padova.gbdrme.org/ http://la-figa-di-sabrinaferilli.gbdrme.org/ http://librerie-di-palermo.gbdrme.org/ http://accessorio-antonio-fusco.pvaeyo.org/ eb89aa2351bfb8dd061b0dc25061dcdb
83.28.126.* 于 2007-07-20 19:47:57发表:
0dccbccac692da4b30b626b6dfd66fef http://collezionegranturismopaneraiferrari.chohqh.org/conserva-trasporti/ http://scriveremessaggioaugurioanno2007.kprskz.org/autocarro-bedford/ mistral vento nudismo naturalismo anna tatangelo pose porno agenzia asca http://funzionedirettoregeneralesrl.cerfmd.org/anno-and-mille/ http://downloadsoftwareturnoservizio.pehabe.org/esame-guida/ http://larca.pehabe.org/tennis-tempo-reale/ http://dispensematematica.kcqdnd.org/sito-ufficciale/ b8fb7d84153cc5c69600cbe1497734b2
200.92.88.* 于 2007-07-19 10:38:12发表:
dc218b6265a40eac5f4107864bf3d560 http://crema-carita.iznvge.in/ http://arco-balestra.bkqryo.com/ http://abbazia-di-pomposa.iznvge.in/ http://film-teenager-casa-bianca.kmyeyh.com/ http://allevamento-schnauzer-treviso.qeshtw.in/ http://san-paolo-fc.uylqdg.com/ http://correlazione-proteina-pressione-osmotica-sangue.aoknmm.in/ http://immergas-extra-intra.licoxi.in/ http://funzione-file.jvzulp.in/ http://legge-4-luglio-2006-visco-bersani.uylqdg.com/ b8a12f78e2ab8d9c8e5e94f78e975725
84.77.151.* 于 2007-07-17 22:32:03发表:
0ded5478499c9ad1d6a11c6c7dea7f73 http://wwfipavpallavolounder16campionato.lgyeas.org/italia-vista-satellite-tempo-reale/ http://silvioberlusconidatanascita.nxaqjj.org/attentato-locri/ http://cordadelcerchio.jpwypc.org/giubbotto-polo-nord/ cassazione sentenza 3276 2005 http://indirizziprefettura.vniybd.org/tabella-joule/ accessorio motorola l6 http://abercrombiegiubbotto.qbmkwd.org/cartoni-animate/ http://risultatopartitapallavolo.lgyeas.org/casa-vacanza-mare-vendita/ adattatore alimentazione hard disc http://antonellalagovidcaps.jpwypc.org/popolo-nomade/ 8ea4fcdde1a965ef95e68187f350c6f6
89.191.164.* 于 2007-07-17 15:47:46发表:
http://5080bef6c6497fd4eea5aae0726d6b04-t.xkktxb.org 5080bef6c6497fd4eea5aae0726d6b04 http://5080bef6c6497fd4eea5aae0726d6b04-b1.xkktxb.org 5080bef6c6497fd4eea5aae0726d6b04 http://5080bef6c6497fd4eea5aae0726d6b04-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
218.237.92.* 于 2007-07-16 13:37:22发表:
c0f3575afec66005a23334bf4a987cc2 http://avvio-ritardato-xp.knhtou.com/ http://giacca-denim.wdexfm.biz/ http://tatuaggio-asportazione.ywowql.com/ http://casa-vacanza-trieste.knhtou.com/ http://posto-romantico-vicino-roma.xmjviq.com/ http://traduzione-vampire.knhtou.com/ http://san-giovanni-in-galilea.ywowql.com/ http://tumore-vescica-tnm.wdexfm.biz/ http://elena-sofia-ricci-biografia.gvjcaf.com/ http://legge-finanziaria-2006-iva.jmncsw.biz/ 8cff813cd5cdf93d908a9e43c4704dad
59.149.39.* 于 2007-07-15 05:43:13发表:
5a755050914278c09d0453a5fd152b57 games gratis per pc ufficio arredato firenze http://altoparlantelogitechpc.gapphu.org/agriturismo-toscana-pensione/ fanciulla malata d amore http://storiadellingotto.eqacfr.org/portatile-acer-aspire/ http://psicologiasalute.seklde.org/gazebo-per-esterni/ http://eleonoraruffo.eqacfr.org/bulgari-petits-et-mamans-prezzo/ quella troia di mia zia http://serrandaantistrappoantitaglio.kqjhpm.org/gianfranco-blasi/ http://voloperannecy.gapphu.org/legge-248-2006-amministrazione-condominiale/ a875aa102e91579b074fe29fa7a13e81
88.148.92.* 于 2007-07-13 22:33:24发表:
4d27487b84483ceb1fd88d8998145c82 http://guida-cd-musica-classica.ubetii.org/ http://diabete-mellito-tipo-1.aoonyx.org/ http://minimoto-xp-4t-motard-polini.iwfpha.org/ http://erotismo-uomo-maturo-foto.mpxxqr.org/ http://racconto-ragazza-prima-esperienza-sborra.lvqits.org/ http://sintesi-trilogia-alexandros-valerio-massimo-manfredi.wxamgv.org/ http://costruzioni-zona-sismica.wxamgv.org/ http://scienza-della-comunicazione-savona.mhjqva.org/ http://modena-aprile.benlzg.org/ http://isolamento-acustico-parete.ubetii.org/ 8c2a5fabd273020cebfaea52010ee4bb
121.191.1.* 于 2007-07-12 15:49:39发表:
a0299e737e44a1881dfdfea7f989a2de http://posta-asl-milano-it.uwlbfm.org/ http://acquisto-albero-padova.rtistm.org/ http://cintura-accessorio-abbigliamento.mtfkmx.org/ http://carbone-luigi.mtfkmx.org/ http://desiderya-videochat.xxfvsr.org/ hospital2.htm http://chip-modifica-playstation.yorcfb.org/ http://verde-ala-vita.egcngx.org/ http://michela-elite-sposa-it.ahffzb.org/ http://trattato-medicina-respiratoria.qpjnvy.org/ d8d97f68bc274489b372d34e17b3a169
189.24.148.* 于 2007-07-11 08:46:14发表:
ced409424ca93f3997fa23459726a491 http://11.ska4aj.com/pagina50.html pagina09.html http://13.ska4aj.com/pagina90.html http://11.skachaj.org/pagina77.html http://7.ska4aj.org/pagina11.html pagina49.html pagina91.html http://11.ska4aj.com/pagina88.html http://5.skachaj.org/pagina93.html http://9.ska4aj.net/pagina30.html 53f688e2d0ae01a48f96ad8f8181d4f6
62.88.1.* 于 2007-07-09 23:55:36发表:
a3294bd838cd704831e034748bd793cf http://tutte-le-canzoni-di-sanremo.dkzfpf.org/ http://pannelli-per-controsoffitti.fyicly.org/ http://piffero-ensemble.uvrseh.org/ http://febbre-san-antonio.bsvetd.org/ http://consolato-germania-milano.wywplu.org/ http://unicredit-banca-my-genius.atersl.org/ http://congelatore-verticali-no-frost.gtimmg.org/ http://hotel-italia-abbiategrasso.uvrseh.org/ http://classico-disney-dvd.uvrseh.org/ http://cosa-mangiano-arabo.uvrseh.org/ 9b45a0bdde2cb75e21785d72ae4741f7
81.202.127.* 于 2007-07-08 14:25:01发表:
96308760dfbf5d44e48d600f99ae724b http://ll-acqua.zgqwur.org/ http://costo-costruzione-edificio-civile.zgagyw.org/ http://festivita-in-europa.jcddfk.org/ http://giocogratispowerrangers.ybhujc.org/un-problema-impedisce-a-windows/ http://voce-sexy-navigatore.mjifwc.org/ http://milly-futura-abbraccio.zgqwur.org/ http://servizio-fax-email-gratis.rjrigb.org/ http://cose-matte.wdhffe.org/ http://cambioadminc.xheadf.org/voli-l-aia/ http://calzoleria-gatto-roma.djrtlt.org/ cda9cd96507def8918671c23330ec82a
82.159.57.* 于 2007-07-07 08:25:12发表:
af9318606d26b775f400d7dd358dbb2e lega nazionale scherma http://prezziario-generale-opera-pubblica-regione-siciliana.zikywm.org/ http://capodanno-cinque-terre.vtjfdr.org/ http://eneide-xii.jwwdqu.org/ http://immagine-odissea.mcgzbb.org/ http://sviluppoeconomicodelleuropadellest.skzbln.org/eliminare-un-trojan/ http://produzione-tubo-acc-inox.mcgzbb.org/ http://venditaregistratorecassacastellanza.yjkdwi.org/dual-disc-raro/ http://conservatorioverde.skzbln.org/software-per-scaricare-un-sito/ http://tassazione-fitti-20.jwwdqu.org/ 268af5f4294519a6b3a74dbb7c6fdf14
200.81.193.* 于 2007-07-02 09:46:21发表:
403efef5ab0779ac5d81237933fb4b7b http://cavo-dato-nokia-ca-53.mksqkw.org.in/ http://testo-di-ricordati-di-me.ooqqld.org.in/ http://sito-jp-morgan-fleming-sicav.pifljm.org.in/ http://josef-maestro-eccelso-italia-milano.dtifhu.org.in/ http://monte-san-giacomo-mountain-bike.oaxzml.org.in/ http://monitor-p-c-torre-greco.mksqkw.org.in/ http://lettera-commerciale-formulario-modello-word-personalizzabili.innltr.org.in/ http://bed-and-breakfast-provincia-firenze.qttkja.org.in/ http://valutazione-quadrimestrale-alunni-scuola-media.mksqkw.org.in/ http://squadra-2005-2006-c-fiorano.mksqkw.org.in/ 8a848390101f52442387e8806988b168
190.38.28.* 于 2007-07-01 05:34:20发表:
5de8149a2f93f2402199e81c0a582a0a http://www.usl6serviziosanitarioterminiimerese.qrxvou.org/ http://dataeoranelsito.pyvila.org/ http://www.dupontaccendinoriparazionedupontaccendinoriparazioni.ocuokj.org/ http://corsidimassoterapiainsicilia.qrxvou.org/ http://www.vinonobilemontepulcianoebrunellomontalcino.opojum.org/ http://www.610programmaincassobosch.zawphd.org/ http://cristianesimocausafineimperoromano.tgydoj.org/ http://risoluzioneproblemawindowsmediaplayer.tgydoj.org/ http://inviosuoneriasonyericssont68i.tgydoj.org/ http://fotoapriliaatlantic500sprint.zawphd.org/ 246f5573f09449eb624440463d221fca
164.77.55.* 于 2007-06-30 02:32:40发表:
b7f5663aee640b0234b67ff8019abc5a http://m2o-diabolika-live-on-network.xflxat.org/ http://vedi-subito-foto-tettona-gratis.ukizsc.org/ http://caratteristica-tecnica-dei-televisore-lcd-plasma.ukizsc.org/ http://fiera-di-vicenza-tempo-libero.utpiii.org/ fonderia ghisa seconda fusione d europa http://buttarelli-marco-alleanza-nazionale-lazio.oensnx.org/ http://d-lgs-262-18-08-2000.ukizsc.org/ http://barcellona-gran-casino-de-barcellona.xflxat.org/ aprire attivita erboristica provincia venezia http://storia-del-design-di-de-fusco.utpiii.org/ 242a24eaaf2d8b6d338dfc62711422de
91.193.5.* 于 2007-06-29 01:55:58发表:
6df5335bbbb13853964eb6694099825c http://ilgiuramentoantiromanodiannibale.bcpmpo.org/rizzoli-larousse-italiano-inglese-inglese-italiano/ http://garadappaltoaeroportovaleriocatullo.ujgyzy.org/comune-roma-bando-leonardo-2007/ http://frase-piu-bella-dei-film.gpzeve.org/ http://aulladonnanonriescemorire.hwdwav.org/mille-giorno-di-te-baglioni/ signore anello ritorno re trucco http://last-second-capodanno-2007-toscana.jmcomw.org/ http://collegiodeigeometridicomo.bcpmpo.org/telit-gu-1100-italia-tim/ http://achimidiceblue.ujgyzy.org/migliore-cofee-shop-ad-amsterdam/ http://associazione-italiana-di-psicologia-giuridica.negvzz.org/ effetto dell indulto reato diffamazione 24974b376644b5034250f73cecc2d1d6
200.109.191.* 于 2007-06-27 22:17:34发表:
4366c8808a43221978b96a1be935403e http://guida-tv-www-teleitalia-tv.nzxwoq.org/ http://curare-la-candida-con-le-erbe.hutfyw.org/ http://salvare-dati-da-disco-rigido.vpvnno.org/ http://laureato-economia-aziendale-banca-2006.oacpyn.org/ http://ceramic-power-liquid-ma-funziona.gdcsng.org/ http://studio-legale-associato-anderson-zen.plzgum.org/ http://varsavia-jan-iii-sobieski-monument.xzpkti.org/ http://vodafone-casa-fastweb-wi-fi.wknmyv.org/ http://passioni-dell-anima-cartesio-volto-viso.tkanof.org/ http://claudio-baglioni-questo-piccolo-grande-amore.zqlmym.org/ dff758ad4d024eb641677108bbbbea97
0.0.0.* 于 2007-06-27 04:38:24发表:
Awesome site! Design is great! Please visit my homepage: vinessa shaw
200.109.159.* 于 2007-06-26 20:21:38发表:
e8994beaeb2b99eb42d1bbfaadf5590d http://affitto-case-a-vietri-sul-mare.ozetoz.org/ http://dvd-r-2x-prezzo-basso.ozetoz.org/ http://sintomodellemalattiadelcuore.wvyart.org/convertire-file-mp3-in-wave/ http://gazzettaufficialedellaregionecampania.mutsoq.org/concorrenti-segnalati-concorso-ferrara-2006/ http://mercantediveneziadishakespeare.wvyart.org/legge-233-90-art-1/ http://fotodidivisadicarabiniere.olskny.org/chitarra-acustica-no-body-usata/ http://scuola-s-vincenzo-de-paoli.taryvn.org/ http://etichettatricedymolw400turbo.mutsoq.org/ischia-forio-albergo-poggio-aragosta-4/ http://festa-di-compleanno-bambini-idea.taryvn.org/ http://calcolo-page-rank-on-line.filgvg.org/ ac74524788537f28ae4c90c357df5e97