Connecting to SQL Azure in Server Explorer returns error “unknown property PrimaryFilePath”

后端 未结 3 590
再見小時候
再見小時候 2021-01-29 02:28

When adding a new data connection in Server Explorer in VS 2010 (with Azure SDK), I can successfully \"Test Connection\" but when adding it I get this alert box:



        
相关标签:
3条回答
  • 2021-01-29 03:02

    I've got the error "unknown property PrimaryFilePath" when tried to connect to Azure DB from VS 2015, but succeeded when connected from VS 2019.

    0 讨论(0)
  • 2021-01-29 03:22

    The default collation for character data in SQL Azure databases is SQL_Latin1_General_CP1_CI_AS. The server and database level collations are not configurable in SQL Azure. However, you can use a collation of your choice at the column and expression level.

    I believe your problem is described here in this blog: Working With Collations In SQL Azure.

    This blog article will show you how.

    0 讨论(0)
  • 2021-01-29 03:24

    I came across the same issue using SSDT for VS 2015. I changed the data provider to ".NET Framework Data Provider for OLE DB" on the Change data Source window and it worked.

    0 讨论(0)
提交回复
热议问题