- 浏览: 9517 次
- 性别:
- 来自: 上海
最新评论
文章列表
需求:Linux根目录太小,不满足使用要求,需要将/home下磁盘空间转移部分给根目录
目标:将/home下341G空间,转移到根目录下200G
操作步骤:
查看磁盘空间大小,/home下容量341G,使用8.8G,/根目录容量50G,使用28G
[root@244 ~]# ...
执行导入数据库命令,遇到执行存储过程时,报错 原因:在创建用户时,没有赋予执行存储过程的权限,导致导入时有执行存储过程时报错解决:1、删除用户及用户下所有内容
drop user yourName cascade;
2、重新创建用户
crea ...
一、 安装前准备工作
1、检查Linux系统是64位还是32位
getconf LONG_BIT
2、下载oracle11g并解压
http://download.oracle.com/otn/linux/oracle11g/R2/linux.x64_11gR2_database_1of2.zip http://download.oracle.com/otn/linux/oracle11g/R2/linux.x64_11gR2_database_2of2.zip
解压到同一目录下,默认为database
unzip linux.x64_11gR2_database_1of2.zip ...
linux下生成的文件不加后缀的话会自己生成后缀lst
下面是批量修改文件后缀变为不带后缀
find /filePath -type f -name '*.lst' -print |
while read filename
do
mv --backup=numbered "$filename" "$(dirname "$filename")/$(basename "$filename" '.lst')"
done
修改为txt后缀
find /filePath -type f -name ...
- 2011-03-22 13:46
- 浏览 1681
- 评论(0)
<generator class="native"/>
1、Assigned
主键由应用逻辑产生,数据交由Hibernate保存时,主键值已经设置完毕,无需hibernate干预。(在主键要特殊设置,有特殊意义的情况下使用,Hibernate不会自动生成了,否则会生成后替换到自己设定的主键)
2、hilo
通过hi/lo算法实现主键生成建机制,需要额外的数据库表保存主键生成的历史状态。
3、seqhilo
与hilo类似,通过hi/lo算法实现的主键生成机制,只要主键历史状态保存在sequence中,适用于支持sequence的数据库,例如:oracle。
4 ...
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation=&q ...