Deploy database objects without creating Roles? #2
-
Is there an option to instruct SnowDDL to deploy database objects without creating roles and granting privileges? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thank you for your interest in SnowDDL. Yes, it is possible. For CLI interface, you may use option For example, to resolve ONLY databases and schemas:
To resolve everything, EXCEPT roles and grants:
Object type names and execution order is described on this documentation page: https://docs.snowddl.com/guides/object-types Full list of SnowDDL options is documented on this page: https://docs.snowddl.com/basic/cli Also, it is available with |
Beta Was this translation helpful? Give feedback.
Thank you for your interest in SnowDDL.
Yes, it is possible. For CLI interface, you may use option
--exclude-object-types
or--include-object-types
.For example, to resolve ONLY databases and schemas:
To resolve everything, EXCEPT roles and grants:
Object type names and execution order is described on this documentation page: https://docs.snowddl.com/guides/object-types
Full list of SnowDDL options is documented on this page: https://docs.snowddl.com/basic/cli
Also, it is available with
snowddl --help
CLI command.