Iker Arizmendi <[EMAIL PROTECTED]> wrote: > When a statement of the form: > > CREATE TABLE xxx IF NOT EXISTS > > what sort of locking overhead is incurred in the case > where the table already exists? >
If the table already exists, no locking occurs. The statement above is a no-op. -- D. Richard Hipp <[EMAIL PROTECTED]>