You have an extract, transformation, and load (ETL) process for a Microsoft Azure SQL data warehouse.
You run the following statements to create the logon and user for an account that will run the nightly data load
for the data warehouse.
CREATE LOGIN LoaderLogin WITH PASSWORD = ‘mypassword’;
CREATE USER LoaderUser for LOGIN LoaderLogin;
You connect to the data warehouse.
You need to ensure that the user can access the highest resource class.
Which statement should you execute?
A.
ALTER SERVER ROLE xLargeRC ADD MEMBER LoaderLogin;
B.
EXEC sp_addrolemember ‘xlargerc’, ‘LoaderUser’
C.
ALTER SERVER ROLE LargeRC ADD MEMBER LoaderUser;
D.
EXEC sp_addrolemember ‘largerc’, ‘LoaderLogin’
Explanation:
https://docs.microsoft.com/en-us/azure/sql-data-warehouse/sql-data-warehouse-develop-concurrency