Search found 141 matches: optimized

Return to advanced search

Re: Nages, 2 diferent Db's update

... If this is a regular operation and we like to transfer from local to remote only those records inserted or modified recently, the process can be optimized if we have a timestamp fields which is updated with every insertion and modification. In such a case, we can simply use this method and do ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 723

Re: phpBB to LLM

... Checkpoint 2000 generated Checkpoint 1600 and 1800 will be transferred to wormhole.app. But we need 1.6 million runs. So the save_steps need to be optimized and perhaps more.
by alerchster
Wed Dec 27, 2023 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4696

Associated Application ICONS

...   END   ENDreturn nil https://imagizer.imageshack.com/v2/xq90/922/zGOZCx.png Note: Easy to write but not fully optimized for speed.
by nageswaragunupudi
Fri Oct 28, 2022 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Associated Application ICONS
Replies: 9
Views: 733

Re: dbfntx very slow with 2+ users

... server must be sized appropriately I don't remember how much ram each user ... In my opinion in a local area network if it were programmatically optimized the index management (DBFCDX) maybe the file/server architecture is still the winning choice each user uses the power of his own client pc ...
by MarcoBoschi
Fri Apr 15, 2022 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfntx very slow with 2+ users
Replies: 41
Views: 6819

Re: Ribbon Theme

... save themes for ribbon bar. The color schemes are saved in an .ini file that is generated with default values. Surely the code can be improved and optimized, I hope it will be useful to you, improvements are welcome. Retomando este viejo tema, queria compartir este codigo para cambiar, generar ...
by TecniSoftware
Mon Sep 20, 2021 9:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28312

FWH: Support for Matrix calculations

... enough mostly, there can be more demanding applications that need complex matrix calculations performed in large loops. To support this, highly optimized C level functions are also provided.
by nageswaragunupudi
Thu Dec 10, 2020 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Support for Matrix calculations
Replies: 3
Views: 720

Re: Strange MariaDB save problem.

Thank you very much Villian, I have optimized and changed my code like that. oRs := oTb_ICBELGE:Open("SELECT IC_ID, IC_NO, IC_TYPE FROM icbelge")IF !EMPTY(oRs) .AND. oRs:Reccount()>0    oRs:GOTOP()  ...
by Horizon
Sun Jun 21, 2020 7:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 1786

Re: xBrowse faster with less colums

SET FILTER TO !DELETED() is optimized if you have an index tag on the expression DELETED() We recommend INDEX ON DELETED() TAG DELETED  Filters are optimized if your index expressions are simple Eg: INDEX ON UPPER(CITY) ...
by nageswaragunupudi
Sat May 02, 2020 2:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse faster with less colums
Replies: 9
Views: 1045

Re: OT Optimizar query MySql

Code: Select all  Expand view
WHERE codicont NOT IN (SELECT codicont FROM catalogo)


This is not well optimized by MySQL

By the way how many records are there in catalogo?
by nageswaragunupudi
Wed Mar 04, 2020 3:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: OT Optimizar query MySql
Replies: 30
Views: 5180

too busy to response

... to GET Object ... and no "sleep" without "OutPut" (VERBOSE=NO) it just take < 5 Sec HMG and FiveWin need Minutes with (not optimized) GUI "Output" which is "normal" neverless i like to ask is there a Way to "Speed" up "OutPut" :idea: ...
by Jimmy
Sun Dec 22, 2019 7:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: too busy to response
Replies: 1
Views: 409

Re: xbrowser footer

... index tag on every large dbf as INDEX ON DELETED() TAG DELETED  Then the filter "SET FILTER TO !DELETED()" also is fully optimized. Better we familiarize ourselves with the way RDD optimizes filters.
by nageswaragunupudi
Tue Dec 03, 2019 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1339

Re: can someone explain to me what is mod_harbour?

... big help of Antonio I can now connect with Advantage Database Server. The browses and the selects are like rockets. And the html code is built and optimized with Bootstrap. So all the forms are compatible with different screen sizes. I found the Bootstrap Studio https://bootstrapstudio.io ...
by Massimo Linossi
Mon Jul 29, 2019 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: can someone explain to me what is mod_harbour?
Replies: 17
Views: 2838

Re: to Nages: test for tdatabase

Nages,

Filters are optimized using indexes and only the required records (not the entire database) are read from the server.


Hmm, I haven't used filters in many years. Are you saying that they are now as fast as scopes?

James
by James Bott
Fri May 10, 2019 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5707

Re: to Nages: test for tdatabase

... Later Nantucket bought the technology from Loadstone and adopted for DBFCDX in Clipper 5.3. That is what we have now with (x)Harbour. Filters are optimized using indexes and only the required records (not the entire database) are read from the server. But to use this effectively, the programmer ...
by nageswaragunupudi
Fri May 10, 2019 6:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5707

Re: to Nages: test for tdatabase

... cWrkord )      ::gotop()   endif   Return self  Of course there are many other processes that take place, and they are also optimized as Methods within the Workorder class.  In one case, I found that I was using 5 different functions, in various places, when calculating totals. ...
by TimStone
Fri May 10, 2019 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5707
Next

Return to advanced search