I have a need to determine if an index exists, delete it if it does, and then create a new index with the same name. Due to the install script being used at our site, I cannot allow an 'index not found' to be returned (that will kill my install). existing code is in the following form:<br><br> drop index XXXXX;<br> create bitmap index XXXXX ~~~~~~;<br><br>I need to "wrapper" the drop index statement to process only if the index exists.<br><br>Any help is greatly appreciated.