You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-snowflake.md
+53-76Lines changed: 53 additions & 76 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ If you're a publisher who is sharing UID2 tokens in the <Link href="../ref-info/
47
47
48
48
## Changes from Previous Version
49
49
50
-
The July 2025 update to the UID2 Snowflake Marketplace integration introduces a new identity mapping function that simplifies UID2 refresh management and accessing previous raw UID2s for 90 days after rotation.
50
+
The July 2025 update to the UID2 Snowflake Marketplace integration introduces a new identity mapping function that simplifies UID2 refresh management and allows accessing previous raw UID2s for 90 days after rotation.
51
51
52
52
:::note
53
53
These changes assume that your code integration uses the version of Snowflake functions published before July 2025: see [Snowflake Integration Guide (Version Prior to July 2025)](integration-snowflake-before-july-2025.md). For details on migrating to this version, see [Migration Guide](#migration-guide).
@@ -106,7 +106,7 @@ You can map DII to UID2s by using the following function:
106
106
107
107
-`FN_T_IDENTITY_MAP_V3` (for details, see [Map DII](#map-dii))
108
108
109
-
The following functions are deprecated in favor of `FN_T_IDENTITY_MAP_V3`. You can still use them if you are on the previous Snowflake version (see [Snowflake Integration Guide (Version Prior to July 2025)](integration-snowflake-before-july-2025.md)), but we recommend upgrading as soon as possible:
109
+
The following function is deprecated in favor of `FN_T_IDENTITY_MAP_V3`. You can still use it if you are on the previous Snowflake version (see [Snowflake Integration Guide (Version Prior to July 2025)](integration-snowflake-before-july-2025.md)), but we recommend upgrading as soon as possible:
#### Example for Monitoring UID2 Refresh and Regenerating Raw UID2s
653
657
654
-
The V3 function provides refresh timestamps directly, eliminating the need to monitor salt buckets. Instead of joining with salt bucket views, you can compare the current timestamp against the `REFRESH_FROM`timestamp returned by the function.
658
+
The v3 function provides refresh timestamps directly, eliminating the need to monitor salt buckets. Instead of joining with salt bucket views, you can compare the current timestamp against the `REFRESH_FROM`timestamp returned by the function.
655
659
656
660
Before (using salt bucket monitoring):
657
661
@@ -668,30 +672,3 @@ After (using refresh timestamp monitoring):
668
672
select * from AUDIENCE_WITH_UID2
669
673
where REFRESH_FROM <= DATE_PART(epoch_second, CURRENT_TIMESTAMP()) or UID2 IS NULL;
670
674
```
671
-
672
-
#### Example for Token Encryption
673
-
674
-
Before:
675
-
676
-
```sql
677
-
select UID2_TOKEN, ENCRYPTION_STATUS from table({DATABASE_NAME}.{SCHEMA_NAME}.FN_T_UID2_ENCRYPT('2ODl112/VS3x2vL+kG1439nPb7XNngLvOWiZGaMhdcU='));
678
-
```
679
-
680
-
After:
681
-
682
-
```sql
683
-
select UID_TOKEN, ENCRYPTION_STATUS from table({DATABASE_NAME}.{SCHEMA_NAME}.FN_T_ENCRYPT('2ODl112/VS3x2vL+kG1439nPb7XNngLvOWiZGaMhdcU='));
684
-
```
685
-
686
-
#### Example for Token Decryption
687
-
688
-
Before:
689
-
690
-
```sql
691
-
select UID2, SITE_ID, DECRYPTION_STATUS from table({DATABASE_NAME}.{SCHEMA_NAME}.FN_T_UID2_DECRYPT('A41234<rest of token>'));
692
-
```
693
-
694
-
After:
695
-
```sql
696
-
select UID, SITE_ID, DECRYPTION_STATUS from table({DATABASE_NAME}.{SCHEMA_NAME}.FN_T_DECRYPT('A41234<rest of token>'));
0 commit comments