Jelajahi Sumber

oracle分区测试

sbj 1 tahun lalu
induk
melakukan
0a93f12706

+ 10 - 0
pom.xml

@@ -56,6 +56,16 @@
 <!--            <version>1.7</version>-->
 <!--        </dependency>-->
 
+
+        <!-- 引入orai18n包(用于支持中文字符集解析) -->
+        <!-- Additional library required to support Internationalization -->
+        <dependency>
+            <groupId>com.oracle.database.nls</groupId>
+            <artifactId>orai18n</artifactId>
+            <version>21.5.0.0</version>
+            <optional>true</optional>
+        </dependency>
+
         <dependency>
             <groupId>com.baomidou</groupId>
             <artifactId>mybatis-plus</artifactId>

+ 1 - 1
src/main/java/com/example/sqlrun/entity/TablespacePartitionRule.java

@@ -11,7 +11,7 @@ import lombok.Data;
  * 表空间以及表分区创建规则表
  * @TableName TABLESPACE_PATITION_RULE
  */
-@TableName(value ="NHGIS.TABLESPACE_PARTITION_RULE")
+@TableName(value ="GHJG_BASICS.TABLESPACE_PARTITION_RULE")
 @Data
 public class TablespacePartitionRule implements Serializable {
     /**

+ 1 - 1
src/main/java/com/example/sqlrun/fixSql/MakePartitionSql.java

@@ -30,7 +30,7 @@ public class MakePartitionSql {
     while (startDate.compareTo(maxDate) < 0){
       Date stDate = startDate;
       startDate = DateUtils.dayAddNum(startDate,1);
-      String targetSql = startSql + DateUtils.dateToString(stDate,"yyyyMMdd") + " values less than " + "(TO_DATE('" + DateUtils.dateToString(startDate,"yyyy-MM-dd HH:mm:ss") + "'" + "," + "'" + "yyyy-MM-dd hh24:mi:ss" + "'" + "))" + " tablespace " + tableSpaceName;
+      String targetSql = startSql + DateUtils.dateToString(stDate,"yyyyMMdd") + " values less than " + "(TO_DATE('" + DateUtils.dateToString(startDate,"yyyy-MM-dd 00:00:00") + "'" + "," + "'" + "yyyy-MM-dd hh24:mi:ss" + "'" + "))" + " tablespace " + tableSpaceName;
       targetSqls.add(targetSql);
     }
     //boolean execute = statement.execute("alter table GHJG_CHANNEL.TEST ADD PARTITION TEST20231202 VALUES LESS THAN (TO_DATE('2023-12-03 00:00:00','YYYY-MM-DD hh24:mi:ss')) tablespace GHJGCHANNEL_TEST");

+ 2 - 0
src/main/java/com/example/sqlrun/fixSql/MakeTableSpace.java

@@ -33,6 +33,8 @@ public class MakeTableSpace {
     String datafile = " datafile ";
     if (StringUtils.isEmpty(tableSpacePath) || !StringUtils.hasLength(tableSpacePath)) {
       tableSpacePath = "D:\\app\\Administrator\\dm\\TEST\\" + tableSpaceFileNamePrefix;
+    }else {
+      tableSpacePath =tableSpacePath +  "/" + tableSpaceFileNamePrefix;
     }
     //Date stDate = DateUtils.stringToDate(startDate, "yyyyMM");
     Date maxDate = DateUtils.monthAddNum(startDate, maxTableSpaceWanted);

+ 1 - 4
src/main/java/com/example/sqlrun/schedule/MakeSpaceAndPartition.java

@@ -2,15 +2,12 @@ package com.example.sqlrun.schedule;
 
 import com.example.sqlrun.entity.TablespacePartitionRule;
 import com.example.sqlrun.service.SpaceAndPartitionService;
-
 import java.util.List;
-
+import javax.annotation.PostConstruct;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 
-import javax.annotation.PostConstruct;
-
 /**
  * @ClassName: MakeSpaceAndPartition
  * @description: TODO

+ 15 - 12
src/main/java/com/example/sqlrun/service/impl/SpaceAndPartitionServiceImpl.java

@@ -56,22 +56,24 @@ public class SpaceAndPartitionServiceImpl implements SpaceAndPartitionService {
                             tableSpace.get(SpaceEnum.TABLESPACENAME.getName()).toString(),
                             date,
                             YearMonth.of(date.getYear() + 1900, date.getMonth() + 1).lengthOfMonth());
-            statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
-            partitionSql.forEach(
-                    i -> {
-                        try {
-                            statement.addBatch(i);
-                        } catch (SQLException throwables) {
-                            throwables.printStackTrace();
-                        }
-                    });
-            statement.executeBatch();
-            statement.clearBatch();
+      System.out.println(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
+       //statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
+//                  partitionSql.forEach(
+//                          i -> {
+//                              try {
+//                                  statement.addBatch(i);
+//                              } catch (SQLException throwables) {
+//                                  throwables.printStackTrace();
+//                              }
+//                          });
+//                  statement.executeBatch();
+//                  statement.clearBatch();
+      partitionSql.forEach(System.out::println);
         }
         Date lastDate = (Date) tableSpaces.get(tableSpaces.size() - 1).get(SpaceEnum.DATE.getName());
         rule.setLastAddTablespaceTime(DateUtils.monthAddNum(lastDate, 1));
         rule.setLastAddPartitionTime(DateUtils.dayAddNum(DateUtils.monthAddNum(lastDate, 1), -1));
-        ruleService.updateById(rule);
+        //ruleService.updateById(rule);
     }
 
     @Autowired
@@ -139,6 +141,7 @@ public class SpaceAndPartitionServiceImpl implements SpaceAndPartitionService {
             }
             statement.executeBatch();
             statement.clearBatch();
+            //h
             return "success";
         } catch (Exception e) {
             return "error" + e.getMessage();

+ 6 - 3
src/main/resources/application.yaml

@@ -6,8 +6,11 @@ spring:
     hikari:
       idle-timeout: 30000
       maximum-pool-size: 150
-    password: SHHW1234
-    url: jdbc:oracle:thin:@//127.0.0.1:1521/orcl
-    username: nhgis
+    password: GHJG@123
+    username: ghjg_basics
+    url: jdbc:oracle:thin:@//10.114.4.56/shhwdb
+#    password: SHHW1234
+#    url: jdbc:oracle:thin:@//127.0.0.1:1521/orcl
+#    username: nhgis
   freemarker:
     check-template-location: false