Re: [GENERAL] A conditional DROP TABLE function

2003-10-13 Thread David Link
Hi Tino, --- Tino Wildenhain <[EMAIL PROTECTED]> wrote: > David Link wrote: > > Hi All, > > > > Here's a Conditional drop_table func for those interested. There > was a > > thread on this a long time back. > > > > We do this all the time : > > > > DELETE TABLE sales; > > CREATE TABLE sales

Re: [GENERAL] A conditional DROP TABLE function

2003-10-12 Thread Tino Wildenhain
Hi David, David Link wrote: Hi All, Here's a Conditional drop_table func for those interested. There was a thread on this a long time back. We do this all the time : DELETE TABLE sales; CREATE TABLE sales (...); Hm. "all the time" enables all the warning lights - what are you doing to have

Re: [GENERAL] A conditional DROP TABLE function

2003-09-26 Thread Peter Childs
On Thu, 25 Sep 2003, David Link wrote: > Hi All, > > Here's a Conditional drop_table func for those interested. There was a > thread on this a long time back. > > We do this all the time : > > DELETE TABLE sales; > CREATE TABLE sales (...); > > But nobody likes > > ERROR: table "sales

[GENERAL] A conditional DROP TABLE function

2003-09-25 Thread David Link
Hi All, Here's a Conditional drop_table func for those interested. There was a thread on this a long time back. We do this all the time : DELETE TABLE sales; CREATE TABLE sales (...); But nobody likes ERROR: table "sales" does not exist which we see all the time in the logs. I want t