How slow - if database is on another server?

Hello,
I want to create a French version of my website.
The original - creme-de-languedoc .com is on a server in
Texas. Which is great for a .com. The French one is on a server in
France, which I'm told is better for .fr sites when Google.fr is
concerned.
Although the pages and images are all on the French server,
the database behind the site is still in Texas.
So far, the pages with dynamic data are loading very slowly.
Is this because the data is on another server in another country?
If so, what's the best way to speed things up? The DB is
added to daily, so I don't want to really have to update a copy of
it constantly on the French server.
Any ideas?
Thanks,
- Greg

Greg,
I don't know if Replicate would work for your purposes or
not.
> Another option for keeping copies of your MySQL database
files is
> /replication/. Replication is having a complete
duplicate of a
> database server running in an alternative (usually
remote) location.
>
> The alternative location runs another copy of the MySQL
server and
> uses a duplicate set of the database files. The primary
MySQL server
> is considered the /master/. All database activity
transpires on the
> master server (in other words, this is the server your
Web application
> should point to). The alternative MySQL server is the
/subordinate/.
>
> A subordinate MySQL server connects to the master server
and monitors
> SQL statements placed in the log file. The subordinate
server reads
> the master server's log file and duplicates each
statement to the
> subordinate log file. You can have any number of
subordinate MySQL
> servers duplicating data from a single master server.
>
> Each subordinate server synchronizes the statements in
its log file
> with the master copy. If a subordinate server is offline
for a period
> of time, the next time it contacts the master it resyncs
the log file,
> adding all of the statements necessary to become
up-to-date.
>
> This makes replication ideal for storing a remote copy
of the MySQL
> database. The subordinate copy is often very close to a
real-time
> backup of the master database.
One obvious caveat is that your subordinate server must only
allow
SELECT access. Probably some DB guru's will rip-me-a-new-one
for even
suggesting such a thing. Oh well, food for thought. Check our
MySQL.com and read up on Replicate, then ask someone there if
this is
pure folly.

Similar Messages

  • Restore database noarchivelog to another server in ASM

    I have to migrate a database 10g with noarchivelog with filesystem to another server with ASM.
    Could you help me to do it?
    Thanks.

    ok, I put the database in archivelog but I don`t understando the link "http://www.oracleflash.com/10/How-to-migrate-Oracle-datafiles-to-ASM-storage-via-RMAN.html".
    First, I have moved the database to the new server, now I have the database with filesystem but in the final server with archivelog. OK.
    The steps are:
    first, I have to modify the parameters of db_create_file_dest, etc, to +ASM.
    I hve to shutdown the database, open nomount, restore controlfile and backup as copy.
    Is it correct?,
    one question, the restore controlfile, I suppose that I have to have a previous backup with filesystem of controlfile?
    Thanks.

  • Database Restore on another Server

    Could someone please explain to me (or point me in the right direction) the procedure (How-To) on how to restore a database to another server?
    please understand I'm just learning oracle and this is all new to me.
    e.g., I have good backups of a database. I restore those database files (control files, dbf, redo logs) to another server. What are the steps in bringing that database up online on a different server?
    ...thanks

    Read thread
    how to clone a database
    Always serach forum.oracle.com, beofre open new thread.
    Cheer,
    Virag Sharma

  • How to install SSRS project on another server where there is no SSDT?

    Hi!
    I have a developer environment with SSDT and My SSRS project. 
    How do I install the whole project with Shared Dataset, shared DataSource, Reports to another server, where doesn't SSDT? 
    P.s. I can't connect to client server with my visual studio from my developer environment.

    Hello,
    What exactly do you mean with "install project"? Do you mean to deploy created reports? You can e.g. manually upload the report files (.RDL) via Report Manager UI. Or do you mean to edit the project on an other machine? Then you have to install SSDT or at
    least Report Builder 3.0.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How To Backup DB Directly To Another Server?

    Hi,guyes,
    I have 2 Servers, Suppose one is named svr1,another is svr2, my db(Ora9.2) is in svr1, but I want to directly backup my db into svr2's disk using rman, so how do I do it? it is possible? pls help me thanks a lot!

    What are your OS versions ?. For example if you are in windows you could map a folder from one OS being that storage of another server.
    Joel Pérez
    http://otn.oracle.com/experts

  • Database migration to another server

    I have one production oracle 10g database on RHEL4 and I want to migrate the data with another server RHEL4.
    I have an RMAN backup.
    Is it sufficient the 2 commands
    rman> restore database;
    rman> recover database;
    to migrate the data in the second server?
    Thanks

    Why don't you duplicate the source database on the target.
    Subject: Oracle10G RMAN Database Duplication
    Doc ID: 259694.1
    HTH
    Anand

  • How to dispatch the request to another server

    Is there a possibility to dispatch the HTTP request to another server using servlet API.
    I want my application to act like a proxy and route URL's to different applications and
    get the reaponse to the client ,
    this is typically i want to do to avoid single origin policy restriction
    any ideas...

    Take a look here and [here!http://download.oracle.com/javase/6/docs/api/java/net/URLConnection.html].
    - Saish

  • MSOALP openquery slower on local than on another server

    Hi,
    We are using SQL server 2008R2 64bit.
    I have an MDX query which executes within 7 seconds (Profiler 'Query End' - duration = 7288) by using the SSMS MDXquery window. The resultset contains +70000 rows, and is finished into the result window within less than 20 seconds.
    I want to transform these results into a SQL stored procedure. So I use a linked server to connect the OLAP server (@srvproduct=N'OLAP', @provider=N'MSOLAP', @datasrc=N'localhost'), and execute the MDX by making use of this linked server:
    SET @SQL='SELECT * FROM OPENQUERY(OLAP_srv, '''+REPLACE(@MDX,'''','''''')+''')'
    EXEC sp_executeSQL @SQL
    However when I execute the MDX from the 'local' OLTP engine, the profiler (SSAS side) shows again 7 seconds for the 'Query End', but the result only returns after nearly 2 minutes. Also the profiler shows: 'Audit Logout' - Duration
    = 117577 ms.
    I have tried this from another OLTP server and on that server it returns within 1 minute.
    When I look with the profiler (SQL side), it are the 'OLEDB DataRead'
    events which are slower.
    OPENQUERY and OPENROWSET have the same results.
    Any idea what’s the reason? Why is it slower on the local SQL server, from local OLAP to local OLTP?
    Thanks.
    Eric.

    Hi Eric,
    Thank you for your question. I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • How to transfer database tables from sql server 2000 to oracle 10g

    Hi,
    I have a database and tables in sql server 2000. I have to transfer those data to Oracle 10g. I have installed Oracle warehouse Builder ETL Tool. Using this how can i transfer data. Any help is vary helpful for me.
    Thanks in advance.

    you have to do it using ODBC HS.
    1. Configure ODBC connection through gateway.
    2. Create a initxxx.ora file with HS config.
    restart gateway listener services
    3. on target o/s add entries to your tnsnames.ora
    4. On your target o/s create a db link
    restart listener on target
    cheeck this out.Non-Oracle connection through HS issue
    Edited by: Darthvader-647181 on Jan 29, 2009 2:02 AM

  • How to restore a Db on another server

    Hello All,
    MaxDb 7.6.00.37.
    I need to copy my database from server A (Windows 2000) to Server B (Windows 2003).
    So i've installed the same version of MaxDb on server B, copy the last full backup from server A to server B, create the database instance using the parameters found in the backup file (changed some path, i.e. for datavolume, log volume...), and then run a restore...
    But after approx 500Mb of data restored, i get message -24998 and -7900, which says that the block size have changed bewteen backup and restore ! If a take a look on backup media properties, everything match bewteen server A and Server B.
    Does anybody have an idea ?
    TIA.
    Frédéric DEMILLY.
    Edited by: Frédéric DEMILLY on Feb 25, 2008 1:14 PM

    Hi Frédéric,
    the blocking size of the backups are determined by the DATA_IO_BLOCK_COUNT
    parameter (used to be the BACKUP_BLOCK_CNT parameter in earlier versions).
    The value of this parameter dictates the blocking size for backups if no other value is specified in the backup media definition.
    So I would recommend to check the value of this parameter (although you copied the parameters from the backup).
    Also quite possible: the backup file could have been corrupted.
    Does a recover_check work?
    What if you copy the file back to server A and run a recover_check there?
    KR Lars

  • How can change database one to another in OEM 10g

    hello
    i have oracle 10g db 10.1.0.2.0 R2.
    and 2 db 1. oracle(db_name) approx 5GB 2. oracle1(db_name) approx 2GB
    now i am using OEM 10g or db managing.and manage oracle db through OEM.
    but i want manage oracle1 db through OEM so what should i do..
    plz. give me reply
    very soon...
    thanx.

    If I understand your question correctly, you have one database that's showing in OEM you say. You didn't specify if it's Database Control or Grid Control.
    Database Control allows u to manage only 1 database. So using Database Control of db1, you can manage db1. Using database control of db2, you can manage db2.
    However if you want to manage both from one server, you can use Grid Control. To make the second node that hosts the second database show up in Grid Control, you need to install the management agent on that node. After that, once you set up the preferred credentials, it will be in GC.

  • How to connect to a MySQL database in another server

    Dear friends,
    I am using Oracle SQL Developer 1.5.3 and I need to connect to a MySQL database located in another server.
    I am trying to create a new connection, informing connection name, username and password. Supposing that "Hostname" is the IP server address, I click on "Choose database", but I always receive the following error message: "Status : Failure - Cannot connect to MySQL server".
    Please tell me what I should do to solve this situation. Thanks in advance.
    Best regards,
    Franklin

    You need to configure your mysql database to accept connection from your PC for the user you used.
    For example,
    GRANT ALL ON *.* TO 'someuser'@'somehost';
    FLUSH PRIVILEGES;

  • How can i made a snapshot of a disk and replace the disk on another server solaris 11?

    Helo! I am trying to replace a disk on my solaris 11 with a snapshot of another server. I did the snapshot, but how can i send it to another server? I have try somethings, but It didnt work. Look:
    #first tentative
    zfs send /rpool/vdisk/srvdth05-ldom1.hdd0@snap1 | ssh 192.168.4.52 zfs recv /rpool/vdisk/'srvdth05-ldom1.hdd0'
    cannot open '/rpool/vdisk/srvdth05-ldom1.hdd0': invalid dataset name
    #second tentative
    root@srvdth03 # scp [email protected]:/rpool/vdisk/srvdth05-ldom1.hdd0@snap1 .
    Password:
    scp: /rpool/vdisk/srvdth05-ldom1.hdd0@snap1: No such file or directory
    #third tentative
    zfs send -i rpool/vdisk/srvdth05-ldom1.hdd0@snap1 | ssh 192.168.4.52 zfs recv "/rpool/vdisk/snaps"
    cannot receive: failed to read from stream
    #fourth tentative
    zfs send -Rv rpool/vdisk/srvdth05-ldom1.hdd0@snap1 > /rpool/snaps/vdisk-hdd0.snap2
    scp [email protected]:/rpool/snaps/vdisk-hdd0.snap2 .
    in the other host
    zfs receive -r rpool/vdisk/vdisk-hdd0@snap < /rpool/snaps/vdisk-hdd0.snap2
    cannot receive: can not specify snapshot name for multi-snapshot stream
    I dont know what to try anymore. Someone can help me please?

    Hi.
    This form is correct :
    zfs send rpool/vdisk/srvdth05-ldom1.hdd0@snap1 | ssh 192.168.4.52 zfs receive rpool/vdisk/'srvdth05-ldom1.hdd0
    Dataset name do not content first "/" at starting name.
    You can check  what datasets available with command:
    zfs list
    On system 192.168.4.52 you should preparare dataset.
    ssh 192.168.4.52
    zfs list | grep rpool
    zfs create -o mountpoint=none rpool/vdisk
    in case dataset rpool/vdisk/'srvdth05-ldom1.hdd0 on 192.168.4.52 olready present, you need add "-u"  for recv
    Read manual about zfs command for section send and recieve.
    man zfs
    Regards,
       Nik.

  • How do I import email messages from another server?

    Heya,
    So I can't figure out how to import mail messages from another server into this one? I had [email protected] pointing to the old one, when I repointed it obviously all my email "disappeared" because there is none on the new server. So how do I move it from the old server to the new one? Usually I'd just drag and drop the email message files over FTP but SLS doesn't seem to give me permission to do that on this one.
    Thanks!

    Search for discussions of the imapsync tool.

  • Finding out about another server

    How do I find things about another server? Such as the number of users logged in and what OS the server is running.

    I have no idea what this has to do with Java, this sounds like a server specific question. Check out the docs for the server that you would like to know the information about, if it is available then it should be in the docs.

Maybe you are looking for

  • How do I change my time capsule to a NAS using extreme

    I purchased a 2013 AP Extreme and a refurb. TC to use as a secure (from unpredictable weather/fire) way of backing up.  How do I use the TC as a NAS?

  • The iPad "My iPad" cannot be synced. The disk could not be read from or written to.

    Since updating iTunes to 10.5 (running on OS X 10.6.8) I get this error message at the end of syncing for 2 different iPhones and an iPad 2: The iPad "My iPad" cannot be synced. The disk could not be read from or written to. Everything was fine befor

  • What happens to installation files when an installation fails.

    Having just come from a Windoze platform my question is as follows:  (MAC OS X Lion) I tried installing Adobe Elements and I am now aware that the version is too old and not supported by Lion. So the installation seemed to run to completion and it wa

  • Pdf files not saved as pdfs asnymore!!!!

    hi everyone, i have this seriously annoying issue regarding pdf downloaded from firefox , they are automatically saved as text files . tried changing properties and update change to similar , still doesnt work . i can still make them run on adobe but

  • Slow sync/outlook appts missing

    I have a BB Pearl 8120, syncing desktop manager 4.7 with Outlook 2003 on an XP laptop via USB.  I am syncing addresses, notes, tasks, and calendar.  I have two issues: 1) it takes an extremely long time to sync.  It says I have something like 13k ent