2011-12-05
由于前两天重装服务器时,使用了pxe安装。本来想总结下pxe自动化安装系统的,不过由于要忙于自考,先把一些看到的关于pxe+kickstart和pxe+kickstart+cobbler安装的几个总结的很不错的文章页粘到下面吧!一是防止自己那忘了,可以再翻来看看;二也可以等自考完……
Continue reading
2011-12-02
fuser命令在linux系统中用来根据文件或文件结构识别进程。 使用权限: 超级用户 语法格式: fuser [ -c | -d | -f ] [ -k | -K { SignalNumber | SignalName }] [ -u ] [ -x ] [ -V ]File … 使用说明: 此 fuser 命令列出了本地进程的进程号,那些本地进程使用 File 参数指定的本地或远程文件。 对于阻塞特别设备,此命令列出了使用该设备上任何文……
Continue reading
2011-12-02
ORA-01102: cannot mount database in EXCLUSIVE mode 今天在STARTUP一数据库时,发生如下错误: 1SQL> conn /as sysdba 2Connected to an idle instance. 3 4SQL> startup 5ORACLE instance started. 6Total System Global Area 276824064 bytes 7Fixed Size 778736 bytes 8Variable Size 137371152 bytes 9Database Buffers 138412032 bytes 10Redo Buffers 262144 bytes 11ORA-01102: cannot mount database in EXCLUSIVE mode 12 13SQL> shutdown immediate 14ORA-01507: database not mounted 15ORACLE instance shut down. 网上找了一下,发现日志:http://nitar.blog.163.com/blog/static/2863……
Continue reading
2011-12-02
数据库在安装完成后,在启动时,报错误:ORA-01078: failure in processing system parameters 1[oracle@localhost ~]$ sqlplus /nolog 2SQL*Plus: Release 10.2.0.4.0 - Production on Fri Dec 2 15:56:00 2011 3Copyright (c) 1982, 2007, Oracle. All Rights Reserved. 4SQL> conn /as sysdba; 5Connected to an idle instance. 6SQL> startup 7ORA-01078: failure in processing system parameters 8LRM-00109: could not open parameter file '/opt/oracle/product/10g/dbs/initnis.ora' 9从上面报的错误不难看出是缺少了文件initnis.ora,于是执行cp /opt/oracle/admin/gaxt/pfile/init.ora.1122011151513 /opt/oracle/product/10g/dbs/initnis.ora 10重新启动, 11SQL> conn /as sysdba; 12Connected to an idle instance. 13SQL> startup 14ORACLE instance started.……
Continue reading
2011-11-29
代码如下: 1#include <stdio.h> 2#define N 10 3int main(void) 4{ 5 int a[N] = {5, 1, 8, 4, 0, 2, 9, 3, 6, 7}; 6 int i, flag, temp, j = N; 7 do { 8 flag = 0; 9 for (i = 1; i < j; i++) 10 { 11 if (a[i - 1] > a[i]) 12 { 13 flag = 1; 14 temp = a[i - 1]; 15 a[i - 1] = a[i]; 16 a[i] = temp; 17 } 18 } 19 j--; 20 } while (flag); 21 for (i = 0; i < N; i++) 22 { 23 printf("%5d", a[i]); 24 } 25 printf("n"); 26}……
Continue reading
2011-11-26
方法1:使用yumdownloader yumdownloade这个工具是由yum-utils这个软件安装生成的!安装好后就可以直接使用了,使用非常简单,如下: <br /> <pre class="prettyprint linenums lang-bsh">[root@web1 ~]# rpm -qa |grep yum-utils [root@web1 ~]# yum -y install yum-utils* [root@web1 ~]# rpm -ql yum-utils /usr/bin/debuginfo-install /usr/bin/package-cleanup /usr/bin/repo-graph /usr/bin/repo-rss /usr/bin/repoclosure /usr/bin/repodiff /usr/bin/repomanage /usr/bin/repoquery /usr/bin/reposync /usr/bin/repotrack /usr/bin/verifytree /usr/bin/yum-builddep /usr/bin/yum-debug-dump /usr/bin/yum-groups-manager /usr/bin/yumdownloader 使用非常简单,后面直接跟上包名就行了,下载好的包……
Continue reading
2011-11-25
C语言字符串函数总结: 1.字符处理库(ctype)中的函数 2.stdio中的字符串和字符输入/输出的函数 3.通用实用库stdlib中的字符串转换函数 4.字符串处理库string中的字符串处理函数 C语言的字符串实际上是存储单个字符的数组,结尾包含一个结束该字符串的特别的字符(&ld……
Continue reading
2011-11-25
再列个副标题吧:decode函数与abs、sign、trunc、substr函数的混合使用。 decode()函数是ORACLE PL/SQL是功能强大的函数之一,目前还只有ORACLE公司的SQL提供了此函数,其他数据库厂商的SQL实现还没有此功能。(但其不是标准SQL函数,不过这……
Continue reading
2011-11-24
SQL SELECT DISTINCT 语句 在表中,可能会包含重复值。这并不成问题,不过,有时您也许希望仅仅列出不同(distinct)的值。 关键词 DISTINCT 用于返回唯一不同的值。 语法: SELECT DISTINCT 列名称 FROM 表名称 使用 DISTINCT 关键词 如果要从 “Company” 列中选取所有的值,我们需要使用 SELECT 语句: SELECT Company FROM Orders “Orders”表: Company OrderNumber IBM 3532 W3School 2356 Apple……
Continue reading
2011-11-22
mysql 到该行结束、– 到该行结束 以及 /* 行中间或多个行 */ 的注释方格: mysql> SELECT 1+1; # 这个注释直到该行结束 mysql> SELECT 1+1; — 这个注释直到该行结束 mysql> SELECT 1 /* 这是一个在行中间的注释 */ + 1; 注意 — (双长划) 注释风格要求在两个长划后至少有一个空格! oralce,mssql 单行注释: — 多行注释:/**/ 示例: select * from tb_name; –查xx表的记录明细 select * from……
Continue reading