boot1111.sql 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. { ************************************************************************* }
  2. { }
  3. { Licensed Materials - Property of IBM }
  4. { }
  5. { "Restricted Materials of IBM" }
  6. { }
  7. { IBM Informix Dynamic Server }
  8. { (c) Copyright IBM Corporation 2007 All rights reserved. }
  9. { }
  10. { Title: boot1111.sql }
  11. { }
  12. { Description: }
  13. { Bootstrapping script for a 11.11 database }
  14. { }
  15. { ************************************************************************* }
  16. { }
  17. { ** IMPORTANT - PLEASE READ }
  18. { }
  19. { All types and routines referenced in this file must be prefixed }
  20. { with the user name "informix". E.g., use "informix.boolean" }
  21. { and not "boolean" }
  22. { }
  23. { Also, please follow the formatting conventions!!! }
  24. { }
  25. { Please ensure that the identifiers that you choose are <= 18 }
  26. { characters in length. Otherwise the changes would affect database }
  27. { reversion. }
  28. { }
  29. { ************************************************************************* }
  30. create dba function informix.ifx_checksum(informix.bigint, informix.integer)
  31. returns informix.integer
  32. with (NOT VARIANT, HANDLESNULLS, PARALLELIZABLE)
  33. external name '(bigint_checksum)'
  34. language C;
  35. grant execute on function informix.ifx_checksum(informix.bigint, informix.integer) to public as informix;
  36. create procedure informix.dummy_1111()
  37. end procedure;
  38. grant execute on procedure informix.dummy_1111 to public as informix;