Unite install fails, with the following:
Code:
[30000] (12/18 14:39:21.240):{0x598} Executing file [C:\Program Files\Research In Motion\BlackBerry Unite\ConfigUtil\db\script\BES_SQL_Generated\createdbV081218143921.sql]
[30000] (12/18 14:39:21.255):{0x598} SQL being executed:
/****************************************************************************
createdb.sql
This SQL script will create the initial Unite database.
Notes:
(C) 1997-2004 Research In Motion Limited.
****************************************************************************/
/*
* C:\Program Files\Microsoft SQL Server\MSSQL\Data and C:\Program Files\Microsoft SQL Server\MSSQL\Data will default to the directory where the model database lives
*/
declare @path nvarchar(1024)
set @path = (select top 1 filename from tempdb.dbo.sysfiles)
declare @indx int,
@lastindx int,
@notdone bit
set @notdone = 1
set @indx = 0
set @lastindx = 0
--find the last \
while (@notdone = 1)
begin
set @indx = (select charindex(N'\',@path,@indx + 1))
if @indx > 0
begin
set @lastindx = @indx
end
else
begin
set @notdone = 0;
end
end
if @lastindx = 0
begin
set @lastindx = len(@path)
end
set @path
[20000] (12/18 14:39:22.115):{0x598} SQL Error Message from CBESDBInstaller::ExecuteSql.executeDirect: SQLSTATE: 42000 Native error: 5170 Message: Cannot create file 'C:\Program Files\Microsoft SQL Server\MSSQL\Data\Unite.mdf' because it already exists.
[20000] (12/18 14:39:22.115):{0x598} SQL Error Message from CBESDBInstaller::ExecuteSql.executeDirect: SQLSTATE: 42000 Native error: 1802 Message: CREATE DATABASE failed. Some file names listed could not be created. Check previous errors.
[20000] (12/18 14:39:22.115):{0x598} Terminating because we couldn't create the database. See log file for details
[20000] (12/18 14:40:41.817):{0x598} COM Error 0x80004005 in ConnectionItem::ConnectToDB() - Cannot open database requested in login 'Unite'. Login fails. - Unspecified error (connection string - Provider=SQLOLEDB;Server=HOD-JEN;Database=Unite;Trusted_Connection=Yes)
[35028] (12/18 14:40:41.817):{0x598}
[35028] (12/18 14:40:51.832):{0x598}
[35028] (12/18 14:41:01.832):{0x598}
[35028] (12/18 14:41:11.832):{0x598}
[35028] (12/18 14:41:21.832):{0x598}
[30000] (12/18 14:41:21.832):{0x598} [PIPTOOL]: Returning from upgradeDB().
====== END OF LOG ======
All virus & firewalls are turned off.
Any thoughts?