NC_DROP_TABLESPACES.sql 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --
  2. -- Licensed Materials - Property of IBM
  3. --
  4. -- BI and PM: JSM
  5. --
  6. -- (c) Copyright IBM Corp. 2003, 2011.
  7. --
  8. -- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. --
  10. -- This script drops the tablespaces for
  11. -- IBM DB2 for z/OS
  12. --
  13. -- Modifications:
  14. --
  15. -- 1) Change NCCOG to the desired database name.
  16. ------------------------------------------------------------------------
  17. --*Removal of Tablespaces --
  18. ------------------------------------------------------------------------
  19. DROP TABLESPACE NCCOG.NCLOBJMS;
  20. DROP TABLESPACE NCCOG.NCLOBJOB;
  21. DROP TABLESPACE NCCOG.NCLOBHIS;
  22. DROP TABLESPACE NCCOG.NCLOBQUE;
  23. DROP TABLESPACE NCCOG.NCDEFTS1;
  24. DROP TABLESPACE NCCOG.NCDEFTS2;
  25. DROP TABLESPACE NCCOG.NCTBLSTA;
  26. DROP TABLESPACE NCCOG.NCTBLJMS;
  27. DROP TABLESPACE NCCOG.NCTBLJOB;
  28. DROP TABLESPACE NCCOG.NCTBLMET;
  29. DROP TABLESPACE NCCOG.NCTBLSCH;
  30. DROP TABLESPACE NCCOG.NCTBLTSK;
  31. DROP TABLESPACE NCCOG.NCTBLOVE;
  32. DROP TABLESPACE NCCOG.NCTBLANC;
  33. DROP TABLESPACE NCCOG.NCTBLHIS;
  34. DROP TABLESPACE NCCOG.NCTBLQUE;
  35. DROP TABLESPACE NCCOG.NCTBLTSE;