dwalshq @dwalshq • Joined Feb 2024 • Active a year ago Remove Connection Are you sure you want to remove from your connections? Profile Forums Discussions Replies Favorites Discussions Replies Favorites Forum Replies Created dwalshq Member January 10, 2024 at 12:00 am in reply to: how to push data to RDB/HDB using pykx The exact install steps, including the URL you’ll want to install is on the page below, https://code.kx.com/insights/1.8/microservices/rt/sdks/python-sdk.html#installation Also, here’s an image of what you want dwalshq Member January 9, 2024 at 12:00 am in reply to: how to push data to RDB/HDB using pykx If you have access to the KX Insights services, you could use the Python interface to Insights to publish data, which your RDB could subscribe to, https://code.kx.com/insights/microservices/rt/sdks/python-sdk.html https://code.kx.com/insights/1.8/microservices/rt/index.html dwalshq Member September 23, 2021 at 12:00 am in reply to: Applying nested conditions in q Another option is to use vector conditional (?) https://code.kx.com/q/ref/vector-conditional/ q)update new_col:?[a=`F;[?[b<c;`hi;`welcome]];[?[c>d;`hi;`welcome]]] from T a b c d new_col ------------------ F 10 9 10 welcome R 20 21 22 welcome