kdb+ and q
Q+A on all things kdb+ database and the q language
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

License Host Limit

We purchased a 2-core license. Is there no host limit per license? if when I configure the tick system with multiple servers, I would like to know if I can use it as one license.

k-mambo by New Contributor III
  • 602 Views
  • 1 replies
  • 0 kudos

Resolved! Getting License error

Hi Floks, I am new KDB, while running q session, I am getting below error. Can you please help on this.

srevuri4_0-1667332365557.png
srevuri4 by New Contributor II
  • 1986 Views
  • 6 replies
  • 0 kudos

Resolved! Function composition using common argument

Hi, Newbie question I guess. To simplify, say I have 2 functions f1 & f2: q) f1: {1-x%y} q) f2: {mavg[x;y]} /This is voluntary which actually in this case, have a common argument when a composition is applied, eg. : q) a: til 10 q) g: f1 . (f2 . (3;...

JP by New Contributor III
  • 1193 Views
  • 3 replies
  • 0 kudos

qpython to select columns from table

This is about qpython code. Let's say we have a table named "t" with 2 columns "name" and "iq" in kdb: from qpython import qconnection, qcollection q = qconnection.QConnection(host='localhost', port=5000): q.open() q("t:flip `name`iq!(`Dent`Beeblebro...