【发布时间】:2017-11-17 07:34:17
【问题描述】:
我希望设置我的 Azure SQL 数据库以备份到我的 Azure Blob 存储。
尝试使用此代码创建 SQL 凭据时:
CREATE CREDENTIAL mycredential
WITH IDENTITY= 'storageaccountname'
, SECRET =
'DefaultEndpointsProtocol=https;AccountName=storageaccountname;AccountKey=8L
==;EndpointSuffix=core.windows.net'
我收到此错误:
Msg 40514, Level 16, State 1, Line 4
'CREATE CREDENTIAL' is not supported in this version of SQL Server.
SQL的版本是:
SELECT @@VERSION AS 'SQL Server Version'
Microsoft SQL Azure (RTM) - 12.0.2000.8 Jun 11 2017 11:55:10 Copyright
(C) 2017 Microsoft Corporation. All rights reserved.
【问题讨论】:
-
以下是用于数据库恢复的连接字符串的示例:docs.microsoft.com/en-us/azure/sql-database/…
标签: azure azure-blob-storage azure-sql-database