Search found 63 matches: replication

Return to advanced search

Re: ADS - The future is <sadly> now so where do you go ?

... The convenience of DD is not appreciated unless you've used them. Having Data Integrity rules, User logins, Stored Procedures, Functions, Replication, etc... is all foreign to most xbase developers. Having files on a file system does not protect or keep data private and secured the way ...
by reinaldocrespo
Sat May 14, 2022 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS - The future is <sadly> now so where do you go ?
Replies: 26
Views: 2791

Re: Replicar Base de Datos a la Nube

... se encarga MARIADB automáticamente, y la actualización es instantánea Puedes ver algunas opciones acá https://mariadb.com/kb/en/setting-up-replication/ Saludos. PD: Lo único es que tu proveedor de hosting debería soportar la replicacion
by Adolfo
Mon Nov 22, 2021 1:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Replicar Base de Datos a la Nube
Replies: 7
Views: 807

Re: FWH 18.11: MARIAROWSET Table Replication Features

Hello Mr. Rao, hello everyone else, and my apologies for being absent for so long; Let me suggest a different approach at achieving replication: 1. have a way to declare a "publication". A publication describes what tables & columns are to be replicated. A single database could ...
by reinaldocrespo
Wed Oct 02, 2019 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: MARIAROWSET Table Replication Features

RAO 1 ) Ok , i check can you answer me for point 2 ? 2) I Try the function UpdateTableToServer( cTable, oDestServer, cTimeStampFld ) --> lSuccess I modify my table ans create a field TIMESTAMP ALTER TABLE arti ADD modificato_il TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMEST...
by Maurizio
Tue Oct 01, 2019 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: MARIAROWSET Table Replication Features

... open. 2) When you open a table on the main server, you need to set oRs:oReplServer := <replserverconnection> The corresponding table on the replication server should be identical with the main table. Then any changes made to the main table will be replicated to the same table on the replication ...
by nageswaragunupudi
Tue Oct 01, 2019 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: MARIAROWSET Table Replication Features

Hello RAO 1) I am testing Table Replication Features. If I make changes in the xbrowse oRsMain all works ok . But if at the same time I make changes to the oRsMain table with another program or procedure the oRsRepl table it is not updated. ...
by Maurizio
Tue Oct 01, 2019 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

New FTDN November 2018 (FWH 18.11)

... cTable on current server. This is possible only if the table contains a timestamp field created with datatype "=". - FWMARIAROWSET TABLE REPLICATION: New Datas: oReplServer bOnReplFail If oRs:oReplServer is assigned with connection object to an external server, all modifications (modify,append ...
by Antonio Linares
Sat Dec 01, 2018 10:46 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November 2018 (FWH 18.11)
Replies: 1
Views: 2157

Re: FWH 18.11: MARIAROWSET Table Replication Features

Dear Rao Sir , Good Idea Data Sync On TimeStamp Based ..! UpdateTableToServer( cTable, oDestServer, cTimeStampFld ) --> lSuccess Will Replication manage automatically, if Table Structure columns count is diff between source and target ? e.g. source table has extra column compare to ...
by shri_fwh
Fri Nov 30, 2018 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: MARIAROWSET Table Replication Features

We request interested users of FWH 18.11 to put this feature to intensive test and provide feedback and suggestions to help us to improve this feature.
by nageswaragunupudi
Thu Nov 29, 2018 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: MARIAROWSET Table Replication Features

... the latest changes from the table on the current server. This is a faster way to update the destination table after failure or discontinuation of replication. Please note that it is easy to create such a timestamp field using datatype "=" using oCn:CreateTable() method instead of creating ...
by nageswaragunupudi
Thu Nov 29, 2018 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: DBF to MySql Replication with TDataBase

can I replicate part of the BD, such as file with Name, address, phone, value, local database and remotely replicate the same database, with the same name, but only the name and value fields? thanks Not possible. Structures of both the table should be identical. Also, there should be an auto-increm...
by nageswaragunupudi
Thu Nov 29, 2018 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: DBF to MySql Replication with TDataBase
Replies: 5
Views: 1646

Re: FWH 18.11: MARIAROWSET Table Replication Features

Use
Code: Select all  Expand view

oMainCn:CopyTableToServer( cTable, oRemoteCn )
 

This will overwrite the remote table with the present table on the main server and makes both the tables identical.
The time taken depends on the size of the table.
by nageswaragunupudi
Thu Nov 29, 2018 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Re: FWH 18.11: DBF to MySql Replication with TDataBase

can I replicate part of the BD, such as file with Name, address, phone, value, local database and remotely replicate the same database, with the same name, but only the name and value fields? thanks
by Admpss
Thu Nov 29, 2018 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: DBF to MySql Replication with TDataBase
Replies: 5
Views: 1646

Re: FWH 18.11: MARIAROWSET Table Replication Features

Dear Rao Sir , Excellent feature...! If the write to replication server fails, the transaction is rolled back on the main server too. Thereby it is ensured that either the transaction is written to both servers or none at all. Any Function that does ...
by shri_fwh
Thu Nov 29, 2018 9:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661
Next

Return to advanced search