发布时间:2013-11-07 10:00:02
1.大小写控制函数SQL> select lower('Hello World'), upper('Hello World') from dual;LOWER('HELL UPPER('HELL----------- -----------hello world HELLO WORLD2.initcap: 首字母大写select initcap('hello world') from dual;3.concat: 字符连接函数, 等同于 ||SQL> select concat('Hello','.........【阅读全文】
发布时间:2013-11-07 00:47:37
Oracle使用外键来限制子表中参考的字段值,要求子表中的数据必须在主表中存在。当主表的记录发生变化时导致外键参考唯一约束值发生了变化时,Oracle指定了三种动作:默认值(类似于restrict)、delete cascade和delete set null。(整理自网络)1.创建父表并初始化数据S.........【阅读全文】
发布时间:2013-11-05 12:02:44
测试程序[root@portal01 ~]# cat test.c #include <stdio.h>#include <malloc.h>#include <stdlib.h>#include <string.h>#include <unistd.h>int main (){char *p = NULL;int count = 1;while(1){p = (char *)malloc(1024*1024*10);if(!p){printf("malloc error!\n");return -1; &nb.........【阅读全文】
发布时间:2013-10-31 16:19:22
最近在网上看到一些Linux系统管理员的题目,于是整理了一下,未完待续。1、Linux挂载Winodws共享文件夹windows IP 192.168.1.200windows用户administrator 密码P@ssw0rd将C下的share设置成共享在linux下用root执行:mount -t cifs -o username=administrator,password=P@ssw0rd //192.168.1.200/share /mntcd /mn.........【阅读全文】
发布时间:2013-10-30 10:15:03
脚本如下#!/bin/bashfor u in `awk -F: '{print $1}' /etc/passwd`; do if [[ -d "/home/$u" ]]; then if [[ -r "/home/$u/.bash_history" ]]; then cat /home/$u/.bash_history > /tmp/$u.txtt fi&.........【阅读全文】