123456789101112131415161718192021222324252627282930313233343536373839404142 |
- { ************************************************************************* }
- { }
- { Licensed Materials - Property of IBM }
- { }
- { "Restricted Materials of IBM" }
- { }
- { IBM Informix Dynamic Server }
- { (c) Copyright IBM Corporation 2007 All rights reserved. }
- { }
- { Title: boot1111.sql }
- { }
- { Description: }
- { Bootstrapping script for a 11.11 database }
- { }
- { ************************************************************************* }
- { }
- { ** IMPORTANT - PLEASE READ }
- { }
- { All types and routines referenced in this file must be prefixed }
- { with the user name "informix". E.g., use "informix.boolean" }
- { and not "boolean" }
- { }
- { Also, please follow the formatting conventions!!! }
- { }
- { Please ensure that the identifiers that you choose are <= 18 }
- { characters in length. Otherwise the changes would affect database }
- { reversion. }
- { }
- { ************************************************************************* }
- create dba function informix.ifx_checksum(informix.bigint, informix.integer)
- returns informix.integer
- with (NOT VARIANT, HANDLESNULLS, PARALLELIZABLE)
- external name '(bigint_checksum)'
- language C;
- grant execute on function informix.ifx_checksum(informix.bigint, informix.integer) to public as informix;
- create procedure informix.dummy_1111()
- end procedure;
- grant execute on procedure informix.dummy_1111 to public as informix;
|