I'm getting the following error when tried to create table from external table,
ERROR:
OPEN failed with error 0x83090aa2 (Forbidden. ACL verification failed. Either the resource does not exist or the user is not authorized to perform the requested operation.). [814e153e-58d5-4358-9b81-9e061154d1e4] failed with error 0x83090aa2 (Forbidden. ACL verification failed. Either the resource does not exist or the user is not authorized to perform the requested operation.). [814e153e-58d5-4358-9b81-9e061154d1e4][2017-06-29T23:29:02.5068343-07:00].
Used Following example,
CREATE TABLE [dbo].[DimProduct]
WITH (DISTRIBUTION = HASH([ProductKey] ) )
AS
SELECT * FROM [dbo].[DimProduct_external]
OPTION (LABEL = 'CTAS : Load [dbo].[DimProduct]');
What I have to do in order to overcome this?
authorized to perform the requested operation
? On another thought, is it possible to just call theSELECT
on its own? - tobi6