In the vs.net package I installed today 2/10/05 the create table script for UserRoles seems to be missing the ID column.
I compared it to the mysql script. In MSSQL_CreateTables.sql line ~358
CREATE TABLE [dbo].[mp_UserRoles] (
[ID] [int] IDENTITY (1,1) NOT NULL,
[UserID] [int] NOT NULL ,
[RoleID] [int] NOT NULL
) ON [PRIMARY]
GO
This caused the CreateData.sql script to fail
Dave