Search found 43 matches: concurrent

Return to advanced search

Re: DBF . Commit

... problems which can appear are in OS or FS, i.e. the infamous opportunistic locks is MSDN networks which may completely break applications using concurrently the same files and synced by file range and file access locks. This is the most common reason of problems in concurrent file access in ...
by Carles
Mon Oct 23, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2339

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

... it appears to me in this sitution, Win 11 will only support a single RDP session at a time, so how does that work for 4 workstations ? Also, 4 concurrent users would need 4 separate programs running on the server if I understand the process. Tim
by TimStone
Sat May 07, 2022 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS - The future is <sadly> now so where do you go ?
Replies: 26
Views: 2790

Re: Advantage Database Server

... reducing network traffic and also highly improves speeds. Free from the limitations of DBFCDX, importantly size. Better performance with more concurrent users and larger tables. CONS: Cost Porting problems from legacy code ( few but there are issues) To take full advantage of SQL we need to ...
by Otto
Thu Jan 13, 2022 7:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3651

Re: Speedtest CLIPPER vs. xHarbour - COMMIT

... it in many different ways, f.e. by skip(0). The 2-nd action is unique to dbcommit and it's not necessary for any synchronizations in simultaneous/concurrent/network access. The whole job here is sending information to Operating System which is automatically redirected if necessary by OS to File ...
by Antonio Linares
Fri Apr 30, 2021 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Speedtest CLIPPER vs. xHarbour - COMMIT
Replies: 20
Views: 5717

Re: MySQL vs MariaDB

... 3 years. I have deployed 5 different applications using MariaDB as the database. All these databases are being used by more than 600 users with concurrent users counting to 100+ at any point of time. The size of some of the databases are more than 15 GB. Till now I haven't faced any issues with ...
by anserkk
Wed Jun 20, 2018 4:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySQL vs MariaDB
Replies: 4
Views: 854

Re: lentitud tremenda en red

... the reason to use it in such cases. > Please make real speed tests. > The second reason to use NETIO server is resolving problem with > concurrent access to the same files using Harbour applications > compiled for different platforms, i.e. DOS, LINUX, Windows and OS2. > It's very ...
by hmpaquito
Tue Mar 15, 2016 10:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: lentitud tremenda en red
Replies: 20
Views: 5376

Re: ADO RDD xHarbour

... app code changed ? Why? Db engine used Database size Average table size (nr of rows) Biggest table size (nr of rows) Lan and / or Wan Nr of users Concurrent use (new additions by others) and locking Does app use ? Relations Scopes Filters Indexes with UDFs Locks Transactions do you use ado or ...
by AHF
Mon Nov 02, 2015 7:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446346

Re: DBF to SQL converter program

... as Primary/Unique id fields I find this is a good case where planning pays in the long run. If your app will always remain smaller (in number of concurrent users) or you can predict that you will never use (a) replication or will never have to (2) recreate your tables or (3) will never need to ...
by reinaldocrespo
Tue Aug 25, 2015 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 17989

Re: DBF to SQL converter program

... records) as it takes sometime. If you want you can do it faster copying to a csv file and then use statement (MySql) LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name'. Check Mysql doc or other engine doc to seek how you can do it this s the best and faster way to import big amounts ...
by AHF
Thu Aug 13, 2015 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 17989

Re: ADO RDD xHarbour

... application working in parallel with the actual application with ADS and passed all trials. This app with adordd its now being tested intensive on concurrent access to check locking scheme and exclusive use. Will report results end next week. With adordd you can migrate immediately to any SQL server ...
by AHF
Fri Jun 12, 2015 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446346

Re: 2012 server

... working in parallel with the actual application with ADS and passed all trials. This app with adordd its now being tested intensively on concurrent access to check locking scheme and exclusive use. Will report results end next week. Lucas DeBeltran helped a lot with his trials on his ...
by AHF
Fri Jun 12, 2015 8:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2012 server
Replies: 24
Views: 5976

Re: ADO RDD xHarbour

... the Access and I add with Access a new record, I can APPEND new records with ADORDD. Sorry I know that's due to our trials in ADO_LOCK because of concurrent access control. We must be sure that we have the recordset with most recent table information (new and deleted records included). Thanks ...
by AHF
Mon May 11, 2015 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446346

Re: ADO RDD xHarbour

... This is still on trial and its working quite well on heavy transactions many records in many tables. It assures completely record locking and concurrent access control like any other rdd. The drawback is that we must use a dbf table in a network share with another rdd for this to work. Its ...
by AHF
Wed Apr 29, 2015 5:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446346

Re: ADO RDD xHarbour

... important and difficult features are: 1) To have all indexes, record movement, seek, locates and relations emulating 100% ISAM as dbf and ADS. 2) Concurrent access with Transactions. I dont foresee problems in other features but still not initiated. As I told you I'm not looking yet for field ...
by AHF
Mon Apr 06, 2015 4:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446346

Re: ADO RDD xHarbour

Antonio, Regarding concurrent access I choose to initiate a transaction as soon as the first lock is called and end it as soon a dbcommit is called. I assume that the code of apps its written in this mode, dbcommit its only called ...
by AHF
Wed Apr 01, 2015 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446346
Next

Return to advanced search