How can we help you today? How can we help you today?
richardjm
Well in our development of the website we have two developers myself and Steven. Each of us have our own version of the database on our machines which we develop against. We talk quite a lot so we're never really working on the same procedures or tables at the same time Each morning the first person in uses SQL Compare to reysnc the changes once they're stable and gets the new code from source gear so of course it matches the database schema. We also then push the changes to a test server where the tester is running things so generally it goes something like this... 1. SQL Compare Richard to Steven 1.1 Pull changes from Steven to Richard 1.2 Push changes to Steven from Richard 2. SQL Compare Richard to Test System 2.1 Push changes from Richard to Test System 3. SQL Compare Richard to Live System 3.1 Save snapshot of richard into source control ( can use Scream to compare history ) 3.2 Save migration script into source control 3.3 Cancel migration I would imagine you could use the system in this way and it could work quite well. The danger doing it with one backend is that if somebody makes a breaking change it breaks everybodies development until they check in their code and all the developers get it. Our method also relies on regular updates so the synching back and forth from Richard to Steven is easy to resolve. Hope this helps. / comments
Well in our development of the website we have two developers myself and Steven. Each of us have our own version of the database on our machines which we develop against. We talk quite a lot so we'...
0 votes
I would have thought that will be the issue in TableB certainly. The server has to scan all the rows to determine if or not a the row has an AID > a certain value. Whereas for TableA it can just get a chunk of the table and use that immediately. / comments
I would have thought that will be the issue in TableB certainly. The server has to scan all the rows to determine if or not a the row has an AID > a certain value. Whereas for TableA it can just ge...
0 votes