我正在尝试将数据和架构从托管SQL Server 2008实例移动到SQL Azure数据库,我正在使用SQL Management Studio中的SQL导入和导出向导。
它几乎可以工作,但我收到一个错误:
Tables without a clustered index are not supported in this version of SQL Server. Please create a clustered index and try again.
这没有任何意义,因为我在所有表上都有聚簇索引。我确实在SO上看到了这个Q& A,但如果我切换到 .Net Framework数据提供程序for SqlServer ,我会得到一个不同的错误:
Cannot get the supported data types from the
,这是A应该解决的问题。
答案 0 :(得分:2)
我建议使用其他工具,例如SqlAzureMW(http://sqlazuremw.codeplex.com/)或RedGate的工具,因为Sql Management Studio中的导入和导出向导几乎没用: - (
另外,请看一下这里的一些建议: