Re: [WiX-users] Sql Extension to install DB

2007-12-05 Thread Pankaj Bhatia
Thanks ryan. Enabling Wix log with attribute /L*v helped - I forgot to remove "CREATE DATABASE" command from my script which was already taken care by wix's sql extension ;). Cheers Pankaj On Dec 5, 2007 6:17 PM, Ryan O'Neill <[EMAIL PROTECTED]> wrote: > When I run into weird SQL errors like tha

Re: [WiX-users] Sql Extension to install DB

2007-12-05 Thread Ryan O'Neill
When I run into weird SQL errors like that it is usually down to context, for example the language of the user accessing the db is different between your admin user (that you test with) and your WiX user. More likely, I think you are probably using different users and you have a permissions pro

[WiX-users] Sql Extension to install DB

2007-12-05 Thread Pankaj Bhatia
Hello I am new to wix and currently trying to install my sql schema using wix's SQLExtension. here is my code - My SQL script runs successfully if run directly with SQL express but while installing thru wix I simply recei