@echo off
rem (c) Copyright IBM Corp. 2007 All rights reserved.
rem
rem The following sample of source code ("Sample") is owned by International
rem Business Machines Corporation or one of its subsidiaries ("IBM") and is
rem copyrighted and licensed, not sold. You may use, copy, modify, and
rem distribute the Sample in any form without payment to IBM, for the purpose of
rem assisting you in the development of your applications.
rem
rem The Sample code is provided to you on an "AS IS" basis, without warranty of
rem any kind. IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR
rem IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
rem MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do
rem not allow for the exclusion or limitation of implied warranties, so the above
rem limitations or exclusions may not apply to you. IBM shall not be liable for
rem any damages you suffer as a result of using, copying, modifying or
rem distributing the Sample, even if IBM has been advised of the possibility of
rem such damages.
rem BATCH FILE: udfjcat.bat
rem To catalog JDBC and SQLJ user-defined functions on Windows
rem Catalogs the user-defined functions in the UDFjsrv library
rem UDFjDrop.db2 uncatalogs the functions if previously cataloged
rem UDFjCreate.db2 catologs the user-defined functions
rem Both CLP scripts can be run on their own
rem Usage: udfjcat
db2 -td@ -vf UDFjDrop.db2
db2 -td@ -vf UDFjCreate.db2
@echo on