Hi,
I have a error when I run the code:
ERROR: CLI describe error: [Microsoft][ODBC SQL Server Driver][SQL Server]The SELECT permission was
denied on the column 'demo' of the object 'personname', database 'Warehouse', schema 'dbo'.
the code example:
libname SIT odbc noprompt =
"server=prd; DRIVER=SQL Server; Trusted Connection=yes"
DATABASE = Warehouse schema = dbo;
PROC SQL;
CREATE TABLE SITdat AS
SELECT DISTINCT
DurableKey AS personname
, testID
, testdate AS run_fate
FROM SIT.personname;
QUIT;