May help if the DB engine can't take maximum advantage of available threads. There are two databases in your case but still only one DB engine (the brains) that may or may not be maxing out the available hardware resources. Splitting them into four VMs would ensure that four DB engines are able to work in parallel.Splitting them up even more, in VMs even, wouldnt really solve anything. Each VM instance will still take just as long to update the database as the current setup.
Why are you updating yesterday's total with today's number?Correct. That is how I get the totals for the current update, the days total, yesterdays total, week total, etc...
This is done for each user, host and team.
Err, fixing the workflow is the right solution.May help if the DB engine can't take maximum advantage of available threads. There are two databases in your case but still only one DB engine (the brains) that may or may not be maxing out the available hardware resources. Splitting them into four VMs would ensure that four DB engines are able to work in parallel.
May help if the DB engine can't take maximum advantage of available threads. There are two databases in your case but still only one DB engine (the brains) that may or may not be maxing out the available hardware resources. Splitting them into four VMs would ensure that four DB engines are able to work in parallel.
Why are you updating yesterday's total with today's number?
I know but I kinda like taking quick and dirty shortcutsErr, fixing the workflow is the right solution.
Err, maybe you should just have date and score table and generate the view based on today's date?I'm not, todays total gets moved to the "yesterdays" column at the end of the day. The only thing that gets updated is the current update. That gets added to the todays total. The historical data doesn't get updated, it just gets moved to the appropriate location. IE: Todays total gets moved to yesterdays, yesterdays gets moved to 2 days ago, 2 days ago gets moved to 3 days ago, etc... for 28 days.
This allows the site to display:
Recent Update total
Todays total
Yesterdays total
2 days ago total
Last 7 days total
Last 28 days total
(By total, i mean the amount of points earned in that time period)
How about change the application queries so it knows from user ID which DB instance to send the request to? This way you never have to merge the data.Splitting the database up into separate instances is the fundamental issue I am having here. If I can split the database up into multiple VMs, and it speeds things up, then I can do that with a single instance as well. Which I've already tried splitting the data up into chunks to process concurrently. The problem lies with merging all that data back into a single data set which makes the whole process take 3x longer.
How about change the application queries so it knows from user ID which DB instance to send the request to? This way you never have to merge the data.
what does it mean when a host doesn't have userid field in the xml?
is there a unique ID for the project? or is the 8 character string the ID?It means the user wishes to remain anonymous.
so, are we still doing this or not?
I asked our "professional" team this exact question and they came back with "no, it can't be done with SQL Server".key is to just do delta update as opposed to full.
what? what do you mean it cannot be done with sql server?I asked our "professional" team this exact question and they came back with "no, it can't be done with SQL Server".
God forbid, if they launched a cloud service or something.
"1 month downtime while we move around a few terabytes of data".
"hoooge hoooge data", one of them is fond of saying.
How would I know? That's what they told me. I didn't look into it. I'm certainly not going to look into it for them and do their job. I already found them the article showing how to use SQL Server for IIS session persistence. Before I did that, they were like, it's not possible to do round robin load balancing between two IIS web servers due to session persistence issues. Now that it's working fine, not even a thank you or even an acknowledgement that I showed them the light.what? what do you mean it cannot be done with sql server?