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
@@ -0,0 +1,13 @@
whenever sqlerror exit failure rollback
set verify off
accept old_script_name char prompt 'Enter the old script name: ';
accept new_script_name char prompt 'Enter the new script name: ';
update scripts
set script='&&new_script_name'
where script='&&old_script_name';
UNDEFINE new_script_name
UNDEFINE old_script_name
set verify on