我们最近将数据从本地SQL Server(SQL Server 2012)迁移到Azure数据库。请参阅名为“Customer”
的本地数据库中的一个此类表Customer
-------------------------------------------------------------
id | name | GUID | ProfilePhoto
-------------------------------------------------------------
1 Name1 xxxx-yyyy-zzz <<BLOB DATA>>
-------------------------------------------------------------
2 Name2 xxxx-yyyy-zzB <<BLOB DATA>>
-------------------------------------------------------------
3 Name3 xxxx-yyyy-zzA <<BLOB DATA>>
我们在数据库中有一个名为GetProfilePhoto_sp(guid)的存储过程 它接受GUID并返回属于'Customer'表的相应ProfilePhoto。
将“Customer
”表和GetProfilePhoto_sp(guid)
迁移到Azure SQL服务器之后,我们没有“ProfilePhoto”列,因为我们决定将非结构化数据(即ProfilePhoto)存储到Azure Blob存储中
现在我们的GetProfilePhoto_sp指向无效列,因为我们不再拥有'ProfilePhoto'列。 我们是否有任何从GetProfilePhoto_sp存储过程访问Azure存储的规定?