How do I create a view only if it doesn't exist. If it does exist, I want to drop the view and redefine it. I also want no warnings or errors.

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

You're going to kick yourself:

CREATE OR REPLACE VIEW ...

Details here. ;-)

link|improve this answer
1  
darn, you beat me to it and i didn't get a notification an answer was posted already. so +1 from me. – Roland Bouman Feb 11 '10 at 16:27
feedback
CREATE OR REPLACE VIEW <view name>
AS
<your select expression goes here>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.