Я ищу подход для создания файла в хранилище BLOB-объектов Azure с помощью хранимой процедуры на сервере SQL.
Я попытался использовать следующий подход
CREATE CREDENTIAL indcredential
WITH IDENTITY= 'storage account name', -- this is the name of the storage account you specified when creating a storage account
SECRET = 'key1'
BACKUP DATABASE ILS
TO URL = 'blobpath/dbbackup.bacpac'
/* URL includes the endpoint for the BLOB service, followed by the container name, and the name of the backup file*/
WITH CREDENTIAL = 'indcredential' ;
/* name of the credential you created in the previous step */
GO
Используя приведенный выше код,Я могу создать резервную копию файла dbbackup.bacpac в хранилище Azure.
Есть идеи, как создать простой текстовый файл в пути Azure BLOB?