Troubleshooting

This section covers common errors you may encounter when connecting to or querying Data Lens, along with their likely causes and recommended solutions.

ErrorCauseSolution
Connection timeoutNetwork/firewall issuesAdd *.snowflakecomputing.com to your firewall allow list
Authentication failedInvalid credentialsVerify username and check your SSO configuration
Permission deniedInsufficient privilegesContact your admin for the MERCHANT_READER role
Query timeoutQuery too complexAdd filters, reduce date range
No data returnedIncorrect merchant_idVerify merchant_id, check date range
SSL certificate errorOutdated SSL/TLSUpdate OS certificates, use TLS 1.2+

Diagnostic queryAnchorIcon

-- Check your current session info 
SELECT CURRENT_USER(), CURRENT_ROLE(), CURRENT_DATABASE(), CURRENT_SCHEMA(); 
 
-- Verify table access 
SHOW TABLES IN SCHEMA PAYPAL_DATASHARE_DB.RECONCILIATION; 
 
-- Test data access 
SELECT COUNT(*) FROM transfer_v1 
WHERE DISBURSEMENT_DATE = CURRENT_DATE;