sieber
New Contributor
since ‎2012.10.10
‎2021.06.14

User Statistics

  • 45 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi,can somebody tell me when exactly a 'conn error is thrown. I got some of theses error in my log file and don't know why this happens.according to http://code.kx.com/wiki/Errors the error means "too many connections (1022 max)".But I can not reprod...
Hi i want to join two tables on the their time column but i dont want to "left join" them as aj is doing but instead I want an outer join.currently i am using a temporary table with the date values of both tables and doing 2 aj:a:([]date:2014.01.01 2...
Hi,i am using .j.k to decode JSON data. Unfortunately some stringscontain unicode escaped data:{"a":"B\u00f6rse"}decoding this with kdb produces an error: q).j.k "{\"a\":\"B\\u00f6rse\"}" k){$["{"=*x;(`$c'n#'x)!c'(1+n:x?'":")_'x:d x;"["=*x;.Q.fc[c']d...
Hi,ich have a big table with many columns that are updated quite often. q)table:([id:1 2 3] quote:4 5 6; field1: 1 2 3);many upserts per second update the quote field.tableview is a table alias that extends the table by some columns that are feeded b...
Hi,i have a table with column names that contain function parameters (so the names contain special characters : and .)q)table:flip(`a,`$"b:1.4")!(1 2 3;4 5 6)how can I now select these columns?of course "select b:1.4 from table" does not work as inte...