hey guys,
i almost finished my db, extracting all attachments out of db, making it lose from 200Mb down to 21Mb and it thought its gonna be much smother, but i was wrong.
i dont remember, but someone here told me that im gonna face with similar problems.
so my db is 21Mb. network works fine. up to 100Mbit\sec.
but it takes almost 1 minute or a bit longer to get these calculations done. but why ? if i open db from network does it completely download a file, i think it does. so why it takes so long to get it calculated ? and it doesn't use net traffic much in a process of calc.. i have no idea why it takes so long.
in average every cell u see has calls on queries like this one.
and dbl click event
so i have 9 types of calc and bunch of sites that i need to show statistic in this dashboard.
is there a way to structure this dashboard properly ? keeping this UI preferably
i almost finished my db, extracting all attachments out of db, making it lose from 200Mb down to 21Mb and it thought its gonna be much smother, but i was wrong.
i dont remember, but someone here told me that im gonna face with similar problems.
so my db is 21Mb. network works fine. up to 100Mbit\sec.
but it takes almost 1 minute or a bit longer to get these calculations done. but why ? if i open db from network does it completely download a file, i think it does. so why it takes so long to get it calculated ? and it doesn't use net traffic much in a process of calc.. i have no idea why it takes so long.
in average every cell u see has calls on queries like this one.
Code:
=IIf(DCount("site";"QddallA";"site='site5' and status='in progress' and duedate<date() and isactive=false")+DCount("site";"QddallA";"site='site5' and status='new' and duedate<date() and isactive=false")=0;"";DCount("site";"QddallA";"site='site5' and status='in progress' and duedate<date() and isactive=false")+DCount("site";"QddallA";"site='site5' and status='new' and duedate<date() and isactive=false"))
and dbl click event
Code:
="RiskID In(SELECT RiskID FROM QddallA WHERE (status='in progress' and Site='site5' and duedate<date() and isactive=false) or (status='new' and Site='site5' and duedate<date() and isactive=false))"
so i have 9 types of calc and bunch of sites that i need to show statistic in this dashboard.
is there a way to structure this dashboard properly ? keeping this UI preferably
Last edited: