@glilienfield thanks
@artem.gurskiy .. @glilienfield response is described in the documentation at
and specifically
Second, adding OR REPLACE to the command results in any existing database being deleted and a new one being created.
Query
CREATE OR REPLACE DATABASE customers
This is equivalent to running DROP DATABASE customers IF EXISTS followed by CREATE DATABASE customers.