The default membership scripts won't work on Azure as people have noted due to the references to internal sql stored procedures and schema tables that do not exist in a Azure sql database.
An updated version of the asp.net membership scripts for Azure can be found here http://lluisfranco.com/2011/05/18/using-asp-net-membership-in-sql-azure/. You would have to swap out the BugNET versions of these scripts with the modified ones.
Even then YMMV with regards to getting it to work.
Comments: I am using Windows Azure to host BugNET using a cloud service and sql database. I modified the BugNET.Schema.SQlDataProvider.sql file to remove the following section of each CREATE TABLE statement: WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] It was causing the following error: 'Filegroup reference and partitioning scheme' is not supported in this version of SQL Server. I could have removed only ON [PRIMARY] and still avoided the error. The updated sql file is attached. There are still a number of errors and warnings when you run the script and then run BugNET for the first time but no issues so far running the app.
An updated version of the asp.net membership scripts for Azure can be found here http://lluisfranco.com/2011/05/18/using-asp-net-membership-in-sql-azure/. You would have to swap out the BugNET versions of these scripts with the modified ones.
Even then YMMV with regards to getting it to work.
Comments: I am using Windows Azure to host BugNET using a cloud service and sql database. I modified the BugNET.Schema.SQlDataProvider.sql file to remove the following section of each CREATE TABLE statement: WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] It was causing the following error: 'Filegroup reference and partitioning scheme' is not supported in this version of SQL Server. I could have removed only ON [PRIMARY] and still avoided the error. The updated sql file is attached. There are still a number of errors and warnings when you run the script and then run BugNET for the first time but no issues so far running the app.