Hi all,
I've sucessfully installed Virtual Center 4 over a SQL Server 2005 64 bits on a Windows 2008 enterprise VM.
I added an 32 bits DSN for vCenter to access the database VCDB and it seems to work.
Now, I plan to install Update Manager on the same server.
I'm totaly newbie on SQL server 2005
I created a database using this script (I almost cut/paste the script to create de VCDB database for vCenter) See below.
Now, I have to create the DSN to allow access to this database :
This DSN can be 64 bits ? Or only 32 bits, as on vCenter ?
The documentation seems to say it can run on 64 bits DSN. But I would like to be sure.
By the way, I'm not sure that creating a new DB on the same SQL Server installation is usefull.
Thanks
Best regards
ML
-
h6. use
go
h6. CREATE DATABASE ON PRIMARY
h6. (NAME = N'vcupdatedb', FILENAME = N'E:\VCUPDATEDB\VCUPDATEDB.mdf'
+ , SIZE = 4000KB , FILEGROWTH = 10% )+
h6. LOG ON
h6. (NAME = N'vcupdatedb_log', FILENAME = N'E:\VCUPDATEDB\VCUPDATEDB.ldf'
+ , SIZE = 2000KB , FILEGROWTH = 10%)+
h6. COLLATE SQL_Latin1_General_CP1_CI_AS
h6. go
h6. use VCDB
h6. go
h6. sp_addlogin @loginame=[vpxuserupdate], @passwd=N'xxxxx',
+ @defdb='VCUPDATEDB', @deflanguage='us_english'+
h6. go
h6. ALTER LOGIN WITH CHECK_POLICY = OFF
h6. go
h6. CREATE USER for LOGIN
h6. go
h6. sp_addrolemember @rolename = 'db_owner', @membername =
+ 'vpxuserupdate'+
h6. go
h6. use MSDB
h6. go
h6. CREATE USER for LOGIN
h6. go
h6. sp_addrolemember @rolename = 'db_owner', @membername =
+ 'vpxuserupdate'+
h6. go