Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. How do you develop your Databases

How do you develop your Databases

Scheduled Pinned Locked Moved The Lounge
databasetoolsquestioncsharpsql-server
32 Posts 21 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lost User
    wrote on last edited by
    #1

    Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

    ___________________________________________ .\\axxx (That's an 'M')

    _ P M T D 16 Replies Last reply
    0
    • L Lost User

      Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

      ___________________________________________ .\\axxx (That's an 'M')

      _ Offline
      _ Offline
      _Damian S_
      wrote on last edited by
      #2

      A single DEV DB on a server accessible by those who need it, with updates to the DB done by yours truly... ;-)

      -------------------------------------------------------- Knowledge is knowing that the tomato is a fruit. Wisdom is not putting it in fruit salad!!

      1 Reply Last reply
      0
      • L Lost User

        Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

        ___________________________________________ .\\axxx (That's an 'M')

        P Offline
        P Offline
        PIEBALDconsult
        wrote on last edited by
        #3

        How's about you try the "General database forum"? The only place I worked that did anything like that wrote a script for each change. There was a create script that was based on the first version of the table (or whatever). If you needed to add a column (or whatever), you wrote a script to add that column. Only the new scripts had to be executed when a new version was deployed. If we had to create a new database (for a new client or test system) then all the scripts would be executed in order. At another place, I have no idea; I had to submit a request and maybe the DBAs would honor it. More recently, I simply developed on the production systems, it eliminated a whole range of headaches. :-O No, I'm serious, I did. I'm not saying it's the right thing to do, but I did it, like eating bacon.

        B L 2 Replies Last reply
        0
        • L Lost User

          Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

          ___________________________________________ .\\axxx (That's an 'M')

          M Offline
          M Offline
          Martin Hart Turner
          wrote on last edited by
          #4

          We use the DevExpress ORM (called XPO) and this automatically updates the schema when the underlaying objects change, but even so this has it's limitations. I have found the best tool in my programming arsenal is SQL-Compare from Red Gate Software. It is the single best time saver you can invest in. It comes with a SDK that allows us to synchronize client databases with a snapshot that we ship with our application. It's also ideal for keeping development databases syncronized. Just my 2 cents worth... Martin.

          --- Regards, Martin.

          1 Reply Last reply
          0
          • L Lost User

            Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

            ___________________________________________ .\\axxx (That's an 'M')

            T Offline
            T Offline
            ThePotty1
            wrote on last edited by
            #5

            We have a control database which stores the desired structure of our application databases. Changes are made to this by the developers using a change program, and then another program pulls the entire control database down and generates a vb file. This table structure has it's own version number. Finally the vb file is compiled into a database manager, which uses this structure to generate or upgrade the application databases. It may seem cumbersome, but at least you don't have to go on site to apply database changes.

            1 Reply Last reply
            0
            • L Lost User

              Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

              ___________________________________________ .\\axxx (That's an 'M')

              D Offline
              D Offline
              dmitri_sps
              wrote on last edited by
              #6

              I currently implement the same (full DB create script in SVN), but with me as the only developer :) I would say it does not differ from any other multi-user development activity, that is, having several users update the same big file via SVN. You do not even need to lock the file: merging should be OK (though SQL Server still does not know how to create scripts in a repeatable manner: the order of objects is always different, so diff on changes becomes almost meaningless). I think you all should sit down and discuss the procedure. I would require, prior to checking in the changes, to run TortoiseSVN "check for modifications" command with "check reposiitory". If remote changes are discovered in the repository, one should update the local script, create the updated DB, then apply their changes and verify the staff works, before commiting the changed script. This is procedure that works in general cases for code, as well as anything else.

              L 1 Reply Last reply
              0
              • L Lost User

                Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

                ___________________________________________ .\\axxx (That's an 'M')

                B Offline
                B Offline
                Brady Kelly
                wrote on last edited by
                #7

                We all script our structure and data changes individually. At release, we run a compare on views and stored procedures between the current and new databases, and generate alter/create scripts for those changed. Then we merge our individual scripts into one big, structure and data script, and take it from there. We all work on different areas, so there aren't many conflicts.

                All Sorted

                1 Reply Last reply
                0
                • P PIEBALDconsult

                  How's about you try the "General database forum"? The only place I worked that did anything like that wrote a script for each change. There was a create script that was based on the first version of the table (or whatever). If you needed to add a column (or whatever), you wrote a script to add that column. Only the new scripts had to be executed when a new version was deployed. If we had to create a new database (for a new client or test system) then all the scripts would be executed in order. At another place, I have no idea; I had to submit a request and maybe the DBAs would honor it. More recently, I simply developed on the production systems, it eliminated a whole range of headaches. :-O No, I'm serious, I did. I'm not saying it's the right thing to do, but I did it, like eating bacon.

                  B Offline
                  B Offline
                  Brady Kelly
                  wrote on last edited by
                  #8

                  There is always that where clause waiting to escape your chains and disappear as you hit F5 to update just one row. :~

                  All Sorted

                  J 1 Reply Last reply
                  0
                  • L Lost User

                    Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

                    ___________________________________________ .\\axxx (That's an 'M')

                    D Offline
                    D Offline
                    descenterace
                    wrote on last edited by
                    #9

                    There's the old way, and the new way. In both cases, databases exist on a per-machine basis. For our current version, we have a large number of SQL scripts run by a special tool. It also inserts sample data. Maintaining it can be... fun, although we've hit no real problems yet. For the new version, the app itself is capable of generating or synchronising the entire schema from interface definitions in an assembly, and sample data can be added automagically too.

                    L A 2 Replies Last reply
                    0
                    • L Lost User

                      Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

                      ___________________________________________ .\\axxx (That's an 'M')

                      A Offline
                      A Offline
                      adambl
                      wrote on last edited by
                      #10

                      I work in a very similar situation to you: 5 or so developers and we all have local versions of the DB. Separate from the software version we maintain a DB schema version, which is stored in a version table in the DB (in production DB this doubles as a version history/update log). The client knows what version of the DB schema it is compatible with, and won't run with anything else. Any change made to the DB must be added to the Create SQL as well as the Update SQL (OK - so there's an extra overhead, but its not too bad). Scripts are all held in source code control. The updates are all in versioned sections, and we have an in-house sync tool that uses the update script and can update the a DB from any schema version to the version the client is compatible with. Now I've written this down its starting to look complicated, but we haven't had a single problem with it over 4 years, using it on dev machines and to perform upgrades on live DBs too. Adam

                      1 Reply Last reply
                      0
                      • L Lost User

                        Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

                        ___________________________________________ .\\axxx (That's an 'M')

                        S Offline
                        S Offline
                        Simon Capewell
                        wrote on last edited by
                        #11

                        We use a single development database on a server accessible to everyone on the project. By the time there are a lot of people developing, the core structure has already been developed, so most of the changes being made are subtle tweaks - additional columns, new views and SPs. If you need to make changes that are likely to cause problems, you ensure everyone else knows about it! This approach seems to work quite well in a small team. I doubt it'd scale well though.

                        L 1 Reply Last reply
                        0
                        • P PIEBALDconsult

                          How's about you try the "General database forum"? The only place I worked that did anything like that wrote a script for each change. There was a create script that was based on the first version of the table (or whatever). If you needed to add a column (or whatever), you wrote a script to add that column. Only the new scripts had to be executed when a new version was deployed. If we had to create a new database (for a new client or test system) then all the scripts would be executed in order. At another place, I have no idea; I had to submit a request and maybe the DBAs would honor it. More recently, I simply developed on the production systems, it eliminated a whole range of headaches. :-O No, I'm serious, I did. I'm not saying it's the right thing to do, but I did it, like eating bacon.

                          L Offline
                          L Offline
                          Lost User
                          wrote on last edited by
                          #12

                          PIEBALDconsult wrote:

                          How's about you try the "General database forum"?

                          Yeah - wasn't sure which was the best place, really.

                          PIEBALDconsult wrote:

                          like eating bacon.

                          Yes, I do.

                          ___________________________________________ .\\axxx (That's an 'M')

                          1 Reply Last reply
                          0
                          • D dmitri_sps

                            I currently implement the same (full DB create script in SVN), but with me as the only developer :) I would say it does not differ from any other multi-user development activity, that is, having several users update the same big file via SVN. You do not even need to lock the file: merging should be OK (though SQL Server still does not know how to create scripts in a repeatable manner: the order of objects is always different, so diff on changes becomes almost meaningless). I think you all should sit down and discuss the procedure. I would require, prior to checking in the changes, to run TortoiseSVN "check for modifications" command with "check reposiitory". If remote changes are discovered in the repository, one should update the local script, create the updated DB, then apply their changes and verify the staff works, before commiting the changed script. This is procedure that works in general cases for code, as well as anything else.

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #13

                            dmitri_sps wrote:

                            with me as the only developer

                            Certainly makes life easier!

                            dmitri_sps wrote:

                            merging should be OK

                            Not in my experience - as every line of the script is commented with the date and time which seems to confuse the pants off subversion. Also, the file is Really large - esp when including data (such as lookup tables etc)

                            dmitri_sps wrote:

                            I think you all should sit down and discuss the procedure.

                            lol! :laugh: :laugh: :laugh: (you'd have to work here to appreciate that!)

                            ___________________________________________ .\\axxx (That's an 'M')

                            D 1 Reply Last reply
                            0
                            • D descenterace

                              There's the old way, and the new way. In both cases, databases exist on a per-machine basis. For our current version, we have a large number of SQL scripts run by a special tool. It also inserts sample data. Maintaining it can be... fun, although we've hit no real problems yet. For the new version, the app itself is capable of generating or synchronising the entire schema from interface definitions in an assembly, and sample data can be added automagically too.

                              L Offline
                              L Offline
                              Lost User
                              wrote on last edited by
                              #14

                              descenterace wrote:

                              the app itself is capable of generating or synchronising the entire schema from interface definitions in an assembly, and sample data can be added automagically too.

                              Awsome!

                              ___________________________________________ .\\axxx (That's an 'M')

                              1 Reply Last reply
                              0
                              • S Simon Capewell

                                We use a single development database on a server accessible to everyone on the project. By the time there are a lot of people developing, the core structure has already been developed, so most of the changes being made are subtle tweaks - additional columns, new views and SPs. If you need to make changes that are likely to cause problems, you ensure everyone else knows about it! This approach seems to work quite well in a small team. I doubt it'd scale well though.

                                L Offline
                                L Offline
                                Lost User
                                wrote on last edited by
                                #15

                                Simon Capewell wrote:

                                he core structure has already been developed, so most of the changes being made are subtle tweak

                                I think that's the problem with ours - it didn't occur to me until I read your post that the reason it is so bad where I am now is that because there has been no design (and I mean NONE) the changes aren't minor - they can involve massive wholescale changes, splitting a single table into many, or merging many onto one, etc.

                                ___________________________________________ .\\axxx (That's an 'M')

                                S L 2 Replies Last reply
                                0
                                • L Lost User

                                  dmitri_sps wrote:

                                  with me as the only developer

                                  Certainly makes life easier!

                                  dmitri_sps wrote:

                                  merging should be OK

                                  Not in my experience - as every line of the script is commented with the date and time which seems to confuse the pants off subversion. Also, the file is Really large - esp when including data (such as lookup tables etc)

                                  dmitri_sps wrote:

                                  I think you all should sit down and discuss the procedure.

                                  lol! :laugh: :laugh: :laugh: (you'd have to work here to appreciate that!)

                                  ___________________________________________ .\\axxx (That's an 'M')

                                  D Offline
                                  D Offline
                                  dmitri_sps
                                  wrote on last edited by
                                  #16

                                  Maxxx_ wrote:

                                  ...every line of the script is commented with the date and time

                                  There is a setting in SQL Server script wizard: Include Descriptive Headers, which is on by default (one of many :~ changes MS done to this wizard lately). Turn it off to make life easier, but with changing order of definitions, I doubt it will improve things much :sigh:

                                  Maxxx_ wrote:

                                  dmitri_sps wrote: I think you all should sit down and discuss the procedure. lol! (you'd have to work here to appreciate that!)

                                  So here you are: this is the problem :laugh:

                                  1 Reply Last reply
                                  0
                                  • L Lost User

                                    Simon Capewell wrote:

                                    he core structure has already been developed, so most of the changes being made are subtle tweak

                                    I think that's the problem with ours - it didn't occur to me until I read your post that the reason it is so bad where I am now is that because there has been no design (and I mean NONE) the changes aren't minor - they can involve massive wholescale changes, splitting a single table into many, or merging many onto one, etc.

                                    ___________________________________________ .\\axxx (That's an 'M')

                                    S Offline
                                    S Offline
                                    Simon Capewell
                                    wrote on last edited by
                                    #17

                                    Oh that's nasty. Even if you've got a really nicely automated update system going, those kind of changes are going to break lots of things for everyone. When we've had to do core changes, we send one guy off to hack away at it for a month on his own, documenting everything that's being changed and finishing with a big horrible merge at the end. It requires some advance planning to make sure the merge is actually feasible ;)

                                    1 Reply Last reply
                                    0
                                    • B Brady Kelly

                                      There is always that where clause waiting to escape your chains and disappear as you hit F5 to update just one row. :~

                                      All Sorted

                                      J Offline
                                      J Offline
                                      JHubSharp
                                      wrote on last edited by
                                      #18

                                      This happened to me once on a production database. Your heart feels really weird sitting in your stomach as you watch every row in production get updated.

                                      C 1 Reply Last reply
                                      0
                                      • D descenterace

                                        There's the old way, and the new way. In both cases, databases exist on a per-machine basis. For our current version, we have a large number of SQL scripts run by a special tool. It also inserts sample data. Maintaining it can be... fun, although we've hit no real problems yet. For the new version, the app itself is capable of generating or synchronising the entire schema from interface definitions in an assembly, and sample data can be added automagically too.

                                        A Offline
                                        A Offline
                                        alexander_karmanov
                                        wrote on last edited by
                                        #19

                                        I do it through a set of scripts executed by a script which is configured through config files. Schema changes made according to the change log, code is redeployed at every update completely. All the changes/code are introduced in form of script registered in one of the config files. All the code is under source control - subversion on my machine and/or TFS for the projects. Most of the time I don't even know were my databases are deployed - developers and testers are able to install and update their local and shared copies by themselves. I described it in an article here: http://www.simple-talk.com/sql/database-administration/deploying-database-developments/[^] Please mind that while the article decribes approach that I'm using allover the place for a few years, the script attached to the article was just rewritten and was pretty buggy :). I have an updated version of it, should you be interested in it - email me. But the question is may be too broad - I use Erwin for the model, generate schema of it, put it to the scripts. For the changes usually use red-gate sql compare and modify it as needed. For the procs I use Management studio + sql toolbelt + CLCL utility (for the whole wack of templates for any occasions). Security and other config files are xml files, so I edit it with something. HTH

                                        1 Reply Last reply
                                        0
                                        • L Lost User

                                          Statutory "sorry if you think this is a programming question - its not meant to be" disclaimer. I'm interested in how other people handle development in a multi-developer team environment. In our situation we have four (or so) developers working on a .Net system against an SQL server back end. Each of us has a copy of the DB on our dev. machines. To say that the DB schema changes frequently would be an understatement - so they have added the SQL script to recreate all of the tables in the DB to the .Net solution in Subversion. So if I want to make a DB change, I get the latest version and lock it, run the SQL, make my changes, run a utility to recreate the script, then check it back in to subversion. This seems to me to be cumbersome, and somewhat prone to stuffing up (more than a few changes have been lost when someone runs the script which then undoes their changes) So how are other people coping with this out there (assuming a similar sort of environment)? (in a previous life I worked on a system where there was no Dev DB - so the live DB was updated by developers - so at least I know our system isn't the worst out there!)

                                          ___________________________________________ .\\axxx (That's an 'M')

                                          E Offline
                                          E Offline
                                          Ennis Ray Lynch Jr
                                          wrote on last edited by
                                          #20

                                          Most solutions I see or hear about are based around ignoring change control, giving developers the power to rapidly change the database, or build the db on build, or generate the DAL on build, yadda, yadda, yadda. The best solution is to have one person, or process to control changes to the DB. Each developer may have his or her own database but to get the changes to the actual dev database it has to go through the documented change control process, get approval, etc. This allows the maximum number of persons to work on a system, effectively. (For staff of less than 2 I wouldn't bother)

                                          Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
                                          If you don't ask questions the answers won't stand in your way.
                                          Most of this sig is for Google, not ego.

                                          C 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups