ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/udr/testsuite/udrlib/dropdefs.sh
Revision: 371
Committed: Wed Jan 5 15:21:22 2022 UTC (2 years, 3 months ago) by tony
Content type: text/x-sh
File size: 358 byte(s)
Log Message:
Beta Release 0.1

File Contents

# User Rev Content
1 tony 371 #!/bin/sh
2    
3     if [ -z "$FIREBIRD" ]; then
4     echo "FIREBIRD not defined"
5     exit
6     fi
7    
8     $FIREBIRD/bin/isql -user SYSDBA -pass masterkey employee <<EOT
9     drop function MyRowCount;
10     drop function BadRowCount;
11     drop function UDRInfo;
12     drop procedure MyTestProc;
13     drop procedure MySelectProc;
14     Alter Table EMPLOYEE drop PREVIOUS_PHONE_EXT;
15     drop trigger MyEmployeeUpdate;
16     EOT
17    
18