littleK0i
littleK0i
@praneeth1987 , schemachange is probably not the best choice for this specific use case. It keeps track of migrations, but not of state of specific objects. Recently I've open sourced...
@praneeth1987 , yes, it is possible. Normally I would suggest to [create separate Snowflake accounts](https://docs.snowflake.com/en/sql-reference/sql/create-account.html) for every environment. It helps to simplify things a lot. Alternatively, it is possible to...
Is there anything blocking this page from being merged? I am happy to fix it. Thank you.
I agree to the Snowflake CLA 👍
Hi @jdanielmyers , Thank you for noticing this pull request. I think it might be worth mentioning "snow" prefix being reserved for official products somewhere in guidelines. Otherwise more developers...
What is the error message? Could you also try to enable `debug=True` and post logs here? Let's take a look.
Aha, got it. Using `refresh_token` enables proper certificate verification. https://github.com/exasol/pyexasol/blob/master/pyexasol/connection.py#L700-L703 Is Exasol SAAS certificate valid in the first place? Does it work with JDBC / ODBC drivers?
Is JDBC / ODBC working on this machine with Exasol SAAS? In theory, it might be a problem if system default certificate authority does not recognise SSL certificates generated for...
I've checked it with a small SaaS testing cluster and did not detect any issues. Also, I've checked certificates returned by Exasol: ``` { 'OCSP': ('http://r3.o.lencr.org',), 'caIssuers': ('http://r3.i.lencr.org/',), 'issuer': ((('countryName',...
A sample code I've used for testing, including hostname, but not credentials. ``` import pyexasol import ssl import pprint printer = pprint.PrettyPrinter(indent=4, width=140) with pyexasol.connect(dsn='p34ibbbqujamtclijzpo5pmsni.clusters.exasol.com', user='xxx', refresh_token='xxx') as C: #...