show tables in kdb+ - Kdb+ / qStudio

Home Forums Kdb+ / qStudio show tables in kdb+

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #435

    DJ
    Guest

    How do I show tables that exist on a kdb+ server?

    #442

    \a or system “a” will list all the tables that exist on the kdb+ server.

    q)t:([] a:1 2 3)
    q)\a
    ,`t
    q)system “a”
    ,`t
    q)t2:([] c:4 5)
    q)\a
    `s#`t`t2
    q)system “a”
    `s#`t`t2

    #501

    tables[]
    views[]
    are functions that display tables and views as symbols lists.

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘show tables in kdb+’ is closed to new replies.