Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-25 Thread Wilson, Phil
toolset. Subject: Re: [WiX-users] Create MS SQL Server 2008 database during installation. Hi Bob, thanks for the reply. here are the few linnes from the log just before the error occured. I tried it on SQL server 2005 express installation. My target is SQL Server 2008. MSI (s) (40:80) [15:38:34

Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-25 Thread Bob Arnson
On 3/25/2010 1:46 AM, Michael Osmond wrote: Error 0x80004005: failed to create to database: 80004005 - is Access Denied. That's 0x80040005; 0x80004005 is E_FAIL. -- sig://boB http://joyofsetup.com/ -- Download

Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-25 Thread Bob Arnson
On 3/25/2010 1:43 AM, Asiri Wanigarathne wrote: CreateDatabase: Error 0x80004005: failed to create to database: 'TestDatabase', error: unknown error Any error at this point should also have logged additional errors, so I can't explain why you're not seeing them. That said, you're creating a

Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-25 Thread Asiri Wanigarathne
thanks guys, I got rid of the user and the following worked fine: sql:SqlDatabase Id=testDB ContinueOnError=no CreateOnInstall=yes DropOnUninstall=yes Server=[DBSERVER]

Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-24 Thread Bob Arnson
On 3/22/2010 10:36 PM, Asiri Wanigarathne wrote: My installer fails with following error message: Error – 2147467259. Failed to create SQL database. TestDatabase, error detail: unknown error. There's additional logging before that line that might be helpful to pinpoint the cause. --

Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-24 Thread Asiri Wanigarathne
Hi Bob, thanks for the reply. here are the few linnes from the log just before the error occured. I tried it on SQL server 2005 express installation. My target is SQL Server 2008. MSI (s) (40:80) [15:38:34:583]: File: C:\Program Files\WIX\WindowsFormsApplication1.exe;To be installed;

Re: [WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-24 Thread Michael Osmond
-users] Create MS SQL Server 2008 database during installation. Hi Bob, thanks for the reply. here are the few linnes from the log just before the error occured. I tried it on SQL server 2005 express installation. My target is SQL Server 2008. MSI (s) (40:80) [15:38:34:583]: File: C:\Program Files

[WiX-users] Create MS SQL Server 2008 database during installation.

2010-03-22 Thread Asiri Wanigarathne
Hi Folks, I am working on a WIX installer project that requires creating a MS SQL Server database on SQL Server 2008. My installer fails with following error message: Error – 2147467259. Failed to create SQL database. TestDatabase, error detail: unknown error. To isolate the issue I created a