No longer able to create a bacpac: SQL70015: Deprecated feature 'String literals as column aliases' is not supported on SQL Azure

前端 未结 2 624
栀梦
栀梦 2021-01-19 01:13

We have encountered a critical error today - we are no longer able to create bacpac files of our live Azure production databases. Everything was working up until now, and su

2条回答
  •  没有蜡笔的小新
    2021-01-19 01:39

    well I fell your pain... the answer here is: Replace your schema...There's no other way...
    Instead of 'Column Name' use [Column Name]... instead of Select CryptColumnA 'Column A' from myTable use Select CryptColumnA as [Column A] from myTable and so forth...

提交回复
热议问题