Business Intelligence Cookbook:A Project Lifecycle Approach Using Oracle Technology
上QQ阅读APP看书,第一时间看更新

Setting up a collaborative environment

A business intelligence and data warehouse project has multiple software products. None of these products operates or produces the same collateral. In order to do this, you need to create an environment where you can check code in and out, as information is updated. Version control tools can be used to track changes to code, or to enable collaboration. A lot of information is contained on individual workstations. By setting up a version control environment, information can be shared and stored centrally, and versioned.

Getting ready

Choosing a version control tool is not easy. Some of the main contenders are:

  • Subversion
    • VisualSVN Server Standard Edition is available at low cost or no cost
    • Collabnet
    • Subversion Edge is another server product available at low or no cost
  • Perforce

Both of these are viable as there is some level of integration into Oracle toolsets. Subversion is the general tool of choice. These tools require a server version installed, so that developers can connect and check their code in and out. For this recipe, we will use VisualSVN Server Standard Edition to set up a collaborative environment.

How to do it...

The standard edition of VisualSVN can be downloaded from: http://www.visualsvn.com/server/download/.

  1. Download the software from the website and start the installation by double-clicking on the MSI package; the installation wizard will start.
  2. Click on the Next button:
    How to do it...
  3. Accept the software license, and click on the Next button:
    How to do it...
  4. Select VisualSVN Server and Management Console, and click on the Next button:
    How to do it...
  5. Select the default location for the installation file and SVN Repository.
  6. Select Use Windows authentication for Authentication, and click on the Next button:
    How to do it...
  7. Select Install to start the installation:
    How to do it...
  8. Upon completion, select the Start VisualSVN Server Manager option, and click on the Finish button:
    How to do it...
  9. Start the VisualSVN Server Manager from the Start menu—Start | Programs | VisualSVN | VisualSVN Server Manager.
  10. Create a new repository. Right-click and select Create New Repository, and enter the Repository name. For example: Code Repository.
    How to do it...
  11. Create the target folders for code. For example, Development, Test, and Production. Right-click on the repository and select New | Folder.
    How to do it...

How it works...

By installing a Version Control server, you have created an environment where you can share code and information. Information such as scripts, code snippets, exports from tools, and documentation can all be shared and controlled using a Version Control environment. Using this environment, you would create additional folders under each environment that corresponds to the release numbers within your Requirements Traceability Matrix.

How it works...