Jayshan Raghunandan

Results 13 comments of Jayshan Raghunandan

Hi, I have the same issue, but I am trying to use the Jenkins JCasC YAML configuration. I have set CASC_VAULT_ENGINE_VERSION=2, and tried various values of the CASC_VAULT_PATHS variable. My...

I had a look at this, but it doesn't extend to the more general use-case. I have a number of v2 KV engines mounted at different paths. uat/kv shared/kv ......

Thanks for confirming @jetersen. A complete rewrite might not be necessary, since access to `/sys/mounts` would provide sufficient information to infer the full secrets path. Indeed I spotted a hopeful...

Using 0.14.3, I appear to be having the same issue - missing hostname in the request URL: ``` netclient join -t TOKEN [netclient] 2022-06-17 09:01:21 joining k3s at [netclient] 2022-06-17...

> Using 0.14.3, I appear to be having the same issue - missing hostname in the request URL: > > ``` > netclient join -t TOKEN > [netclient] 2022-06-17 09:01:21...

Thanks for your quick response. I am loading various sql tables into dataframes. Often, I want to join these dataframes (on primary key). I do this by inspecting the sqlalchemy...

For others who come across this, the following ms-sql statement gives you the primary keys of a temporary table. ```sql SELECT col.name AS PrimaryKeys FROM tempdb.sys.columns col JOIN tempdb.sys.index_columns ic...

Yes, using `like` is not definitely ideal, but at least ?we know? the string starts with the table name, so its not that intensive to query. From what I can...

This appears to not work in my version of SQL Server. Your query yields zero rows containing `#` or anything resembling my table name. What version of SQL Server are...

I see. Thanks for explaining it - makes sense now.