home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / CAT70102.SQL < prev    next >
Encoding:
Text File  |  1995-05-09  |  1.1 KB  |  37 lines

  1. rem 
  2. rem $Header: cat70102.sql 7020100.1 94/09/23 22:14:12 cli Generic<base> $ 
  3. rem 
  4. Rem  Copyright (c) 1992 by Oracle Corporation 
  5. Rem    NAME
  6. Rem      cat70102.sql - 7.1.1 to 7.1.2 upgrade script
  7. Rem    DESCRIPTION
  8. Rem      Script for upgrading from 7.1.1 to 7.1.2
  9. Rem    NOTES
  10. Rem      Must be run while connected as internal.
  11. Rem    MODIFIED   (MM/DD/YY)
  12. Rem     gdoherty   11/08/93 -  Add V$NLS_VALID_VALUES
  13. Rem     gdoherty   11/08/93 -  Add Server Manager script calls
  14. Rem     dleary     11/04/93 -  Creation
  15. rem 
  16. rem The following is required by the parallel query option:
  17. create sequence ora_tq_base$
  18.   start with 1
  19.   increment by 1
  20.   nominvalue
  21.   nomaxvalue
  22.   nocache
  23.   noorder
  24.   nocycle
  25. /
  26.  
  27. Rem New view to inquire for valid NLS settings
  28. create or replace view v_$nls_valid_values as
  29. select * from v$nls_valid_values;
  30. drop public synonym v$nls_valid_values;
  31. create public synonym v$nls_valid_values for v_$nls_valid_values;
  32. grant select on v_$nls_valid_values to public;
  33.  
  34. Rem Server Manager views (first appear in 7.1.2)
  35. @@catsvrmg
  36.  
  37.