Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

change control best practices 1

Status
Not open for further replies.

BitZero

Programmer
Mar 11, 2008
100
US
I'm just starting to work with Access, and I have some questions about change control. I want to set up a development, test and production environment. What's the best way to handle this? I'm thinking of having 3 separate .mdb files (dev, test and prod), but I don't know a good way to move my changes from dev to test and from test to production. Any help would be much appreciated.
 
You could have one database and have different prefixes for dev,tes,prod. But then the database will grow quite quickly.
To move objects between databases you can look at:
File -Get External Data -Import
or
Export
or write code with DoCmd.Transferdatabase parameters
or same command in a macro.

But however you do it, I'd set up a table keeping a date/time stamp on each object moved and by whom. And audit it often.

I worked for AT&T during the breakup and we had to rewrite the phone system. The compiled code went to seven centers around the U.S.. When a problem came in, it had to be tracked back to the developer, through testing, recompiling and then where it went. We had a central center through which everything went, requests, changes, linking, compiling and shipping. You have to do this because people will be sneaking in fixes and changes unknown to you.

My opinion.
 
Thanks for the reply. I'll study the export, import and transferdatabase.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top