1.yum仓库(repodata)a.将光盘或镜像文件挂载b.在/media/目录下创建挂载目录mkdir/media/cdrom-pvc.将默认的光盘挂载目录移到/media/cdrom/mount-r/dev/cdrom/media/cdromd.在/media/cdrom/Server/repodata/目录下的文件yum仓库中的元数据文件:primary.xml.gz所有RPM包的列表..
分类:
其他好文 时间:
2015-05-16 01:38:23
阅读次数:
185
Career preparation is becoming increasingly important to young people. For many, this is the primary reason to go to college. They know that the job m...
分类:
其他好文 时间:
2015-05-15 21:20:39
阅读次数:
126
drop table example;
CREATE TABLE example(
ID Number(4) NOT NULL ,
NAME VARCHAR(25),
constraint example_id primary key(id)
);
drop SEQUENCE example_sequence;
CREATE SEQUENCE example_s...
分类:
数据库 时间:
2015-05-15 09:06:24
阅读次数:
158
一、文本相关样式文本格式:text-left:向左对齐文本;text-center:居中对齐文本;text-right:向右对齐文本;文本增强:small,strong,em文本修饰:text-muted(本行内容是减弱的);text-primary;text-success;text-info;t...
分类:
其他好文 时间:
2015-05-14 11:35:49
阅读次数:
136
--初始化数据
drop table test purge;
create table test as select * from dba_objects;
delete from test where object_id is null;
alter table test add constraint pk_test_object_id primary key(object_id);
...
分类:
数据库 时间:
2015-05-13 19:46:55
阅读次数:
248
route命令的用法:操作或者显示IP路由表route:DESCRIPTION Route manipulates the kernel's IP routing tables. Its primary use is to set up static routes to ...
分类:
系统相关 时间:
2015-05-13 18:58:40
阅读次数:
268
create table if not exists League ( lid int primary key auto_increment, lyear int not null, season varchar(10) not null, title varchar(30) not null);....
分类:
数据库 时间:
2015-05-13 12:05:27
阅读次数:
179
建表其实就是声明列的过程,建表语句:create table 表名称 (列名称1 列类型 列属性 默认值,列名称2 列类型 列属性 默认值,index xx (xx))engine=储存引擎 charset=字符集;比如,create table stu(id int primary key a.....
分类:
数据库 时间:
2015-05-13 11:58:04
阅读次数:
162
1. 既复制表结构,也复制表数据 mysql> CREATE TABLE tmp_table SELECT * FROM dede_news; 说明:这种方法的缺点就是新表中没有了旧表的primary key、Extra(auto_increment)等属性, 只能自己手动添加。2、只复...
分类:
数据库 时间:
2015-05-11 12:55:11
阅读次数:
148
1. 找出系统标示的磁盘的 盘符/编号:sudo lshw -C disk2. 创建分区sudo fdisk /dev/sdbw write table to disk and exitn add a new partitionp primary (0 primary, 0 extended, 4 ...
分类:
其他好文 时间:
2015-05-10 12:36:59
阅读次数:
99