Configuring a Microsoft SQL Server for MAP

When installing the Media Access Proxy (MAP) software for use with Microsoft SQL Server 2005 Enterprise Edition SP2 or SQL Server 2008, you need to configure the Microsoft SQL Server database.

Before you begin

About this task

When installing MAP, be aware of the following issues:
  • Use the SQL Server Management Studio when performing this installation procedure.
  • For MAP to work with the Microsoft SQL Server 2005 Enterprise Edition SP2 or SQL Server 2008 Database, the following JDBC drivers can be used:
Important: Do not create any tables manually within the MAP database.

Perform the following steps to create and configure the MAP database.

Procedure

  1. Create the MAP database. Run the following command sequence:
    Note: When creating this database, choose Case Insensitive.
    use master;
    go
    create database MAPDB collate SQL_Latin1_General_CP1_CI_AS;
  2. Create the login account for the database. Run the following command sequence:
    use master;
    go
    CREATE LOGIN MAPDBUSR WITH PASSWORD = 'password'; 

    where password is any valid database password.

  3. Grant access to the database. Run the following command sequence:
    use MAPDB;
    exec sp_grantdbaccess @loginame = 'MAPDBUSR';
    exec sp_addrolemember @rolename = 'db_owner' , @membername = 'MAPDBUSR';
    go

What to do next

After the database is configured, you can install the MAP software.



Terms of use
(C) Copyright IBM Corporation 2012. All Rights Reserved.