ORACLE 创建表空间和用户 /*第1步:创建数据表空间 */create tablespace ods_in logging datafile 'D:\app\fei.yang\oradata\orcl\ods_in_data.dbf' size 50m autoextend on ne...
ORACLE 创建和删除分区 select * from TEST_BOOK t;-- 查看分区数据select table_name, partition_name from user_tab_partitions where table_name = 'TEST_BOOK';-- 删除分区...
数据库方言 DB2 org.hibernate.dialect.DB2Dialect DB2 AS/400 org.hibernate.dialect.DB2400Dialect DB2 OS390 org.h...
Spring Boot Configure DataSource Using JNDI with Example 转载自https://www.java4s.com/spring-boot-tutorials/spring-boot-configure-datasource-using-jndi-with-example/ =======================================...
GIT 常用命令 git 操作命令添加文件到缓存区git add filename添加单个文件到缓存区git add *添加所有修改文件到缓存区git add .同上提交缓存区的文件到本地仓库git commit -m 'commit comment aaa'...