Hi,
Is there a way to reload a hdb without restarting it?
Hi,
Is there a way to reload a hdb without restarting it?
Hi,
Yes if you are connected to the HDB itself then you can reload it by running:
q) \l .
This will reload the current directory you are in.
Andrew Shortt
From: personal-kdbplus@googlegroups.com <personal-kdbplus@googlegroups.com> on behalf of kefa <keithwong8@gmail.com>
Sent: 13 July 2016 03:12
To: Kdb+ Personal Developers
Subject: [personal kdb+] reload hdb without restarting
Hi,
Is there a way to reload a hdb without restarting it?
–
Submitted via Google Groups
It doesn’t have to be in the process to reload a HDB: the same “\l .” call be called through a IPC handle. q)// HDB port at 30000 q)hopen 30000 3 q)// handle 3 connects to HDB 30000 q)3"\l .“; reload with a sync call q)-3”\l ."; reload with a sync call