In the midst of figuring out SqlAzure, I found a handy article showing how to export data from a regular SQL Server database into you SQLAzure database.
I had already created the SQLAzure DB, and the tables (I just generated scripts from my original database, and ran them from SQL Server Management Studio (SSMS) 2008 RS (note, you need R2 to work with Azure), until they passed with no errors. I had to get rid of most of the options in the WITH statement, and the [PRIMARY] designations below:
CREATE TABLE [dbo].[ConferenceInfos](
[Id] [int] IDENTITY(1,1) NOT NULL...