1
I’m trying to do the scaffold of an Oracle base with Oracle.Entityframework.Core
, but according to this link dotnet-db-samples, the following permissions are required:
GRANT CONNECT,RESOURCE,UNLIMITED TABLESPACE TO blog IDENTIFIED BY blog;
ALTER USER blog DEFAULT TABLESPACE USERS;
ALTER USER blog TEMPORARY TABLESPACE TEMP;
It turns out that the DBA does not provide me those permissions.
Are all these permissions necessary? Is there a way that getting access as owner of the scheme there is no risk of harming other schemes?