Is it possible to sever the permissions in a SQL transforms? I found no hint in the documentation
1 Like
Yes it is: of course you’ll need to be granted to do so, otherwise checks are going to fail.
the syntax is similar to the assignment of Spark Profiles and is like to the following
CREATE TABLE `rid` TBLPROPERTIES (foundry_sever_inherited_permissions = 'true')
AS
SELECT *
FROM DUAL
1 Like
@cheTesta do you know if there’s any more documentation on the TBLPROPERTIES
feature for SQL Transforms please?
I see this for managing Spark Profiles, but that’s the only mention I see of it in the docs.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.