Complete the code to list all available data marketplaces in Snowflake.
SHOW [1];The SHOW MARKETPLACES command lists all data marketplaces available in Snowflake.
Complete the code to create a new data listing in a marketplace.
CREATE [1] my_listing IN MARKETPLACE my_marketplace;The CREATE LISTING command creates a new data listing in a specified marketplace.
Fix the error in the code to show all listings in a specific marketplace.
SHOW LISTINGS IN [1];The correct syntax to show listings in a marketplace is SHOW LISTINGS IN MARKETPLACE <name>.
Fill both blanks to grant access to a data listing for a user.
GRANT [1] ON LISTING my_listing TO [2];
Granting USAGE on a listing allows access, and the grantee is a USER my_user.
Fill all three blanks to revoke access from a role on a data listing.
REVOKE [1] ON LISTING [2] FROM [3];
To revoke access, use USAGE permission on the listing name from the specified role.