摘要: -bash: locate: command not found 其原因是没有安装mlocate这个包 安装:yum -y install mlocate 安装完再尝试用locate定位内容,发现依然不好使,报了新的错误: 原因是安装完后没有更新库 更新库:updatedb 阅读全文
posted @ 2019-10-29 16:03 秋语 阅读(301) 评论(0) 推荐(0) 编辑
摘要: oracle 数据库 主键索引重建 alter table table_name drop primary key; alter table table_name add constraint pk_index_name primary key(row_name); 阅读全文
posted @ 2019-10-29 14:16 秋语 阅读(2277) 评论(0) 推荐(0) 编辑
摘要: 增加字段语法:alter table tablename add (column datatype [default value][null/not null],….); 说明:alter table 表名 add (字段名 字段类型 默认值 是否为空); 例:alter table sf_user 阅读全文
posted @ 2019-10-29 14:15 秋语 阅读(591) 评论(0) 推荐(0) 编辑