Hi France,
I noticed that the latest version of BaseX lost this feature and nothing seems to replace it. I'm trying to improve performance of batch processes and I was counting on that feature a lot. Any change it will come back or that something equivalent will come?
With BaseX 9, we removed the classical GLOBALLOCK option (i.e., GLOBALLOCK = false is standard now).
get db:open($lang)/* process save to db:open('staging-' || $lang)
The name of your database may be specified as static string in your query (no matter if you use BaseX 8 or 9):
get db:open('de')/* process save to db:open('staging-de')
Did you try this already? Christian