MakeTableSpace.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.example.sqlrun.fixSql;
  2. import com.example.sqlrun.myEnum.SpaceEnum;
  3. import com.shanghaigeography.Util.DateUtils;
  4. import java.text.ParseException;
  5. import java.util.ArrayList;
  6. import java.util.Date;
  7. import java.util.HashMap;
  8. import java.util.List;
  9. import java.util.Map;
  10. import org.springframework.util.StringUtils;
  11. /**
  12. * @ClassName: makeTableSpace
  13. *
  14. * @description: TODO
  15. * @author: sbj
  16. * @time: 2023/12/5 13:50 @Version: 1.0
  17. */
  18. public class MakeTableSpace {
  19. public static List<Map> makeTableSpaceSql(
  20. String tableSpaceNamePrefix,
  21. String tableSpaceFileNamePrefix,
  22. String tableSpacePath,
  23. Integer initSize,
  24. Integer nextSize,
  25. Integer maxSize,
  26. Date startDate,
  27. Integer maxTableSpaceWanted)
  28. throws ParseException {
  29. List<Map> tableSpaceSql = new ArrayList<>();
  30. String startSql = "create tablespace " + "\"" + tableSpaceNamePrefix;
  31. String datafile = " datafile ";
  32. if (StringUtils.isEmpty(tableSpacePath) || !StringUtils.hasLength(tableSpacePath)) {
  33. tableSpacePath = "D:\\app\\Administrator\\dm\\TEST\\" + tableSpaceFileNamePrefix;
  34. }
  35. //Date stDate = DateUtils.stringToDate(startDate, "yyyyMM");
  36. Date maxDate = DateUtils.monthAddNum(startDate, maxTableSpaceWanted);
  37. while (startDate.compareTo(maxDate) < 0) {
  38. String yyyyMM = DateUtils.dateToString(startDate, "yyyyMM");
  39. String targetSql =
  40. startSql
  41. + yyyyMM
  42. + "\""
  43. + datafile
  44. + "'"
  45. + tableSpacePath
  46. + yyyyMM
  47. + ".DBF"
  48. + "'"
  49. + " size "
  50. + initSize + "M"
  51. + " autoextend on next "
  52. + nextSize + "M"
  53. + " maxsize "
  54. + maxSize + "M";
  55. HashMap<String, Object> hashMap = new HashMap<>();
  56. hashMap.put(SpaceEnum.TABLESPACE_SQL.getName(),targetSql);
  57. hashMap.put(SpaceEnum.DATE.getName(), startDate);
  58. hashMap.put(SpaceEnum.TABLESPACENAME.getName(),tableSpaceNamePrefix + yyyyMM);
  59. tableSpaceSql.add(hashMap);
  60. startDate = DateUtils.monthAddNum(startDate, 1);
  61. }
  62. // String sql = "create tablespace \"GHJGCHANNEL_TEST\" datafile
  63. // 'D:\\APP\\ADMINISTRATOR\\ORADATA\\TEST\\TEST1.DBF' size 1M autoextend on next 1M MAXSIZE
  64. // 10M";
  65. return tableSpaceSql;
  66. }
  67. }