KX Community

Find answers, ask questions, and connect with our KX Community around the world.
KX Community Guidelines

Home Forums kdb+ Save creating 3 files Re: Save creating 3 files

  • rocuinneagain

    Member
    March 11, 2022 at 12:00 am

    Can you include a small reproducible piece of code?

    I do not see the files being created.

    //Including kdb+ version information 
    //If behaviour has changed include previous version information also 
    q).z.k 2021.07.12 
    
    q).z.K 4f //An example table
    q)ot:([]a:1 2 3;b:`a`b`n;c:("jj";"kk";"pp"))
    q)save `ot `:ot //No # or ## files created by `save` keyword
    q){x where x like "ot*"}key `:. ,`ot

     

    The # and ## files you see are used by the anymap datatype on disk.

    You can still read your file with

    get `:ot