bug #10253 totem trunk

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@76929 d1611594-4594-4d17-8e1d-87c2c4800839
master
frederico 2017-12-01 16:37:52 +00:00
parent ff644f08d9
commit 8e87d0c45e
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE PARADA ADD INDVENDETOTEM NUMBER (1,0)';
exception when column_exists then null;
end;
/
UPDATE PARADA SET INDVENDETOTEM = 1;