0

I have a table that I want to find the meta for but I keep getting the following error. I also have similar tables with the same issue and I don't have a sym file. The Trade table for example has the sym column present already so I'm unsure why the error outputs '..sym

q)meta trade '..sym [0] meta trade ^

Any idea what the issue might be?

I tried updating the metadata types but I was unsuccessful resulted in more errors.

cillianreilly
  • 733
  • 4
  • 12
K grass
  • 1
  • 1
  • I think you for got to add the code of the different errors you have. I would suggest you to rad the [how to ask question](https://stackoverflow.com/help/how-to-ask). – Djoby Feb 16 '23 at 14:51

1 Answers1

0

You can get rid of the error by creating a sym variable in memory:

sym:`$()

However the enumerated columns will be all nulls. You need the original sym file for the data to make sense.

https://code.kx.com/q/basics/enumerations/

rianoc
  • 2,015
  • 8
  • 9