学习是一种信仰。
发布时间:2013-04-03 14:18:19
1、建用户及目录campost:/ # groupadd tuxedocampost:/ # useradd tuxedo -g tuxedocampost:/ # passwd tuxedocampost:/ # mkdir /home/tuxedocampost:/ # chown tuxedo:tuxedo /home/tuxedocampost:/ # mkdir /opt/tuxedocampost:/ # chown tuxedo:tuxedo /opt/tuxedo2、安装campost:/home/tuxedo # ./tuxedo11.........【阅读全文】
发布时间:2013-04-01 14:11:15
第一、postgresql的用户和操作系统的用户没有任何直接的的关系虽然在postgaresql的初始安装中,它会有一个内建的超级用户 postgres,而且它会建议你在操作系统中也新建一个用户postgres用它来连接数据库服务器和管理数据库集群,但是这并不是必需要的。在启动数据库服务器之前,你必需先要安装一个数据库集群,也是初始.........【阅读全文】
发布时间:2013-04-01 14:02:24
OS:suselinux11(64bit)PostgreSQL:PostgreSQL9.1(64bit)1、建用户及目录linux:/home # groupadd postgreslinux:/home # useradd postgres -g postgreslinux:/home # mkdir /home/postgreslinux:/home # chown postgres:postgres /home/postgreslinux:/home # passwd postgres2、用root运行安装(不能以postgr.........【阅读全文】
发布时间:2013-03-31 20:15:40
cascade:瀑布;级联;级联删除,比如你删除某个表的时候后面加这个关键字,会在删除这个表的同时删除和该表有关系的其他对象1.级联删除表中的信息,当表A中的字段引用了表B中的字段时,一旦删除B中该字段的信息,表A的信息也自动删除。(当父表的信息删除,子表的信息也自动删除) 例如下面这两个表中分别.........【阅读全文】
发布时间:2013-03-28 15:18:28
今天往oracle insert中文日期(16-1月 -13)时报错:ora-01843,无效的月份;Cause:A date specified an invalid month. Valid months are: January-December, for format code MONTH, and Jan-Dec, for format code MON. Action:Enter a valid month value in the correct format. 1、查看客户端字符集.........【阅读全文】