I am using the following line:
`:c:/dir/ set .Q.en[`:c:/dir; tablename]
Everything is ok if I don't exit KDB, but if I do and then try to load the table using
get `dir
all the symbol columns are integer. I would really appreciate your help into understanding why this happens.
It looks like you forgot to repeat the table name on the l.h.s. of
set
.Try
This will correctly save table columns in
c:/dir/tablename
subdirectory and place thesym
file alongside. Now you should be able to load both your table and the sym file by using the\l
command or specifyingc:/dir
on the command line when you restart qor
(no backticks or leading
:
's in either of those commands)If you want to use
get
on this table, you will have to loadsym
separately:(note the leading
:
in the path specs)Finally, you may want to take a look at the rsave command which will save your table without you having to write
tablename
twice.