Skip to content

Commit c44747d

Browse files
Merge pull request #3008 from sfc-gh-dchaffelson/fix-openflow-spcs-guide
Fix SQL error and remove obsolete BCR bundle section in Openflow SPCS guide
2 parents bc7540c + 74337fd commit c44747d

File tree

1 file changed

+2
-26
lines changed

1 file changed

+2
-26
lines changed

site/sfguides/src/getting-started-with-openflow-spcs/getting-started-with-openflow-spcs.md

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -166,36 +166,12 @@ GRANT BIND SERVICE ENDPOINT ON ACCOUNT TO ROLE OPENFLOW_ADMIN;
166166

167167
-- Grant role to current user and ACCOUNTADMIN
168168
GRANT ROLE OPENFLOW_ADMIN TO ROLE ACCOUNTADMIN;
169-
GRANT ROLE OPENFLOW_ADMIN TO USER IDENTIFIER(CURRENT_USER());
169+
SET id = CURRENT_USER();
170+
GRANT ROLE OPENFLOW_ADMIN TO USER IDENTIFIER($id);
170171
```
171172

172173
This creates the admin role and grants it the necessary permissions to create and manage Openflow deployments.
173174

174-
### Enable BCR Bundle 2025_06 for Integration-level Network Policy
175-
176-
> **CHECK FIRST:** This step is **only required** if you plan to use Database CDC, SaaS, Streaming, or Slack connectors. If you're unsure which connectors you'll use, check the bundle status first. You can always enable it later if needed.
177-
178-
**Step 1: Check if BCR Bundle 2025_06 is already enabled**
179-
180-
```sql
181-
-- Check the bundle status
182-
USE ROLE ACCOUNTADMIN;
183-
CALL SYSTEM$BEHAVIOR_CHANGE_BUNDLE_STATUS('2025_06');
184-
```
185-
186-
**Step 2: Enable the bundle if status shows `DISABLED`**
187-
188-
If the result shows `DISABLED`, enable the bundle:
189-
190-
```sql
191-
-- Enable BCR Bundle 2025_06
192-
CALL SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE('2025_06');
193-
```
194-
195-
> **WHY THIS IS NEEDED:**
196-
>
197-
> BCR Bundle 2025_06 enables integration-level network policies required for Database CDC, SaaS, Streaming, and Slack connectors to connect to Snowpipe Streaming. For more details, see [Enable BCR Bundle documentation](https://docs.snowflake.com/en/user-guide/data-integration/openflow/setup-openflow-spcs-sf#enable-bcr-bundle-2025-06-for-integration-level-network-policy).
198-
199175
### Verify Setup
200176

201177
Check that all core resources were created successfully:

0 commit comments

Comments
 (0)