I am very new to SQL Server. I am trying to execute this T-SQL code in SQL Server Management Studio:
INSERT INTO Stickers (Name, Category, Gender, ImageData)
SELECT
'Red Dress',
'Dress',
'F',
BulkColumn FROM OPENROWSET(Bulk '\\Mac\Home\Documents\MMImages\reddress.png',
SINGLE_BLOB) AS BLOB
but I get this error:
You do not have permission to use the bulk load statement.
So I researched how to get permission. I found a lot of answers. But I have to be logged in as Admin to perform the necessary actions to grant myself the ability to use the bulk load statement.
I have tried connecting to the server using username Admin, password Admin. I am using Azure to host my database.
How do I log in as Admin?