astarche

Results 2 comments of astarche

> Another local workaround: create and use a virtual env. If that solves the `Cannot use the interpreter` issue, it sounds like a good official fix/workaround to me. Since our...

@DarthRinzler , you may be able to work around this with `ALTER SESSION`. I.e., ```csharp _connection.Open(); var command = _connection.CreateCommand(); command.CommandText = "ALTER SESSION SET QUERY_TAG = \"SOME_TAG\";"; command.ExecuteNonQuery(); ```