We are using SQL Server 2012 on AZURE. I would like to use queries from different databases; As azure does not allow us to query from different databases, I decided to create an external table.
However, when I try to create
CREATE DATABASE SCOPED CREDENTIAL cred WITH IDENTITY = 'justin@gmail.com', SECRET = 'the password belonging to the username to access the source database';
I get an error saying The specified schema name "justin@gmail.com" either does not exist or you do not have permission to use it.
Could anyone let me know what the issue is?
Thank you, Justin