dbandre29 0 Denunciar post Postado Novembro 10, 2005 Amigos estou coma seguinte missão: Tenho que fazer um select no meu catalogogo para saber se existe uma tal tabela select table_name from user_tables where table_name = ' tabela ' ;-- Bem se retornar regristro eu tenho que dar um:if xxx>o thenalter table tabela drop column elseCREATE TABLE TABELA (CAMPO TIPO ,CAMPO TIPO ,CAMPO TIPO )--Entendeu somente uma lógica simples mas Compartilhar este post Link para o post Compartilhar em outros sites
Motta 645 Denunciar post Postado Novembro 10, 2005 begin select table_name from user_tables where table_name = ' tabela '; execute immediate 'CREATE TABLE TABELA (CAMPO TIPO ,CAMPO TIPO ,CAMPO TIPO )'; exception when no_data_found then execute immediate 'alter table tabela drop column'; end; Compartilhar este post Link para o post Compartilhar em outros sites
dbandre29 0 Denunciar post Postado Novembro 10, 2005 Valeu meu camarada obrigado.[]s, Andre Compartilhar este post Link para o post Compartilhar em outros sites