Added database/sql

This commit is contained in:
Anonymous
2014-01-17 07:03:16 -07:00
parent 84d3709fdc
commit cf2e16dba2
570 changed files with 84897 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
declare
cnt number;
begin
select count(*) into cnt
from user_tab_columns
where table_name = 'VERSION_NUMBER' and column_name = 'BRANCH_NAME';
if (cnt = 0) then
execute immediate 'alter table version_number add branch_name varchar2(30)';
end if;
end;
/
update version_number set version_number=209, min_version_number=209;