Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2025 04:55 AM - edited 05-28-2025 04:57 AM
Hi @Sahil0007 ,
The [REDACTED] value you're seeing is being retrieved from Key Vault.
Here is the workaround, you can reverse the value twice to decode it and retrieve the original string. Alternatively, you can slice the string into two parts and concatenate them to reconstruct the actual value. Here's an example:
python:
_catalog = (key_vault_value[:-1] + key_vault_value[-1]).capitalize()
You can then use _catalog when querying the table, capitalize() helps to maintain the decoded string.