Access and permissions
Share not appearing in Private Sharing
Symptom: You canât find the Flipside share in your Snowflake account. Possible causes:-
Premium share not yet approved
- Premium shares require manual approval
- Check your email for approval notification
- Allow 1-2 business days for approval
-
Wrong Snowflake account/region
- Shares are only visible in accounts located in AWS US-EAST-1
- Check your current region:
-
Share not granted yet
- For free shares: Visit the Marketplace and click âGetâ again
- For premium shares: Verify you submitted the correct data sharing identifier
1
Verify your region
2
Check Private Sharing
Navigate to Data â Private Sharing in Snowflake UI to see if the share appears.
3
Contact support if needed
Email [email protected] with:
- Your data sharing account identifier
- The specific share youâre trying to access
- Screenshots of the issue
Permission denied when creating database
Symptom: Error when trying to create a database from the share.If you are the account owner, switch to ACCOUNTADMIN role to create the database.
Canât query tables after mounting
Symptom: Database exists but queries fail with access errors.- Incorrect database/schema/table name
- Missing USAGE grants
- Database not fully mounted
Other users canât access the share
Symptom: You can query the share, but colleagues in your account cannot. Cause: Shares donât automatically grant access to all roles in your account. Solution: Grant access to other roles:Query performance issues
Queries running very slowly
Symptom: Queries take minutes or time out. Cause: Likely missing time filter onblock_timestamp.
Solution:
Always filter by block_timestamp:
âQuery produced no resultsâ
Symptom: Query runs successfully but returns zero rows when you expect data. Possible causes:-
Case sensitivity issues with addresses
-
Time range has no data
-
Wrong schema or table
High compute costs
Symptom: Snowflake credits are being consumed quickly. Common causes:-
Selecting unnecessary columns
-
Open-ended time ranges
-
No LIMIT on exploratory queries
Data issues
Data seems stale or outdated
Symptom: Latest data is older than expected. Solution: Check the actual freshness:- Core tables: 30 minutes to 1 hour behind chain head
- DeFi/NFT/Price tables: 1-24 hours depending on complexity
Missing or NULL values
Symptom: Expected columns contain NULL or are missing. Common scenarios:-
Transaction without value transfer
-
Failed transactions
-
Contract creation transactions
Unexpected query results
Symptom: Results donât match expectations or external sources. Debugging steps:1
Verify time range
Ensure your time filter matches the period youâre analyzing.
2
Check filters
Verify address filters use LOWER() and are correct.
sql SELECT LOWER('0xYourAddress') AS normalized_address; 3
Sample the data
Look at raw data to understand whatâs being returned.
sql SELECT * FROM ethereum.core.fact_transactions WHERE block_timestamp >= CURRENT_DATE - 1 LIMIT 10; 4
Compare with block explorers
Cross-reference a few transactions with Etherscan or similar explorers.
Connection and availability
âShare is unavailableâ error
Symptom: Share was working but now shows as unavailable. Possible causes:-
Temporary Snowflake outage
- Check Snowflake status page
-
Share revoked (rare)
- Premium access may be revoked if terms are violated
- Contact [email protected]
-
Account issues
- Verify your Snowflake account is active and in good standing
Tables or schemas missing after update
Symptom: Previously available tables are now missing. Cause: Share structure may have been updated by Flipside. Solution: Refresh your view of the share:Edition and feature limitations
âFeature not supportedâ errors
Symptom: Certain queries or features fail with feature support errors. Cause: Some advanced Snowflake features require higher editions. Required edition: Enterprise or higher Verify your edition:Getting help
If youâve tried the solutions above and still have issues:Dedicated Slack channel
Get direct access to blockchain data experts (not just support tickets)Chat with us anytime. Direct access to our data engineers who can help with:
- Query optimization and debugging
- Data quality questions
- Schema navigation
- Custom use cases
Email support
[email protected]Include:
- Your data sharing account identifier
- The specific share youâre using
- Error messages or screenshots
- Queries that reproduce the issue
Try FlipsideAI
What to include in support requests
Account information
Account information
- Data sharing account identifier
- Snowflake edition (Enterprise, Business Critical, etc.)
- Region (should be AWS US-EAST-1)
Issue details
Issue details
- What youâre trying to accomplish - Whatâs happening vs. what you expected - When the issue started - Whether itâs consistent or intermittent
Technical details
Technical details
- Full error messages
- Sample queries that reproduce the issue
- Query IDs from Snowflake (if applicable)
- Screenshots showing the problem