码迷,mamicode.com
首页 >  
搜索关键字:proc    ( 8879个结果
存储过程和触发器
恢复内容开始 存储过程:保存代码,直接调用 create proc jiafa --需要的 参数 @a int @b int as --存储过程的内容 declare @c int set @c=@a+@b return @c go 执行 之后就 保存了 在可编程性-存储过程 调用 exec dec ...
分类:其他好文   时间:2016-08-07 18:24:10    阅读次数:146
sql数据库存储过程
存储过程:就像函数一样的会保存在数据库中--》可编程性 --》 存储过程 创建存储过程:create proc JiaFa--需要的参数@a int,@b intas --存储过程的内容 declare @c int; set @c = @a + @b; return @c;go --执行完毕后全部 ...
分类:数据库   时间:2016-08-07 12:28:22    阅读次数:188
SQL Server数据库(SQL Sever语言 存储过程及触发器)
存储过程:就像函数一样的会保存在数据库中--》可编程性--》存储过程 创建存储过程: 保存在数据库表,可编程性,存储过程create proc jiafa --需要的参数@a int,@b intas --存储过程内容 declare @c int; set @c =@a + @b; return ...
分类:数据库   时间:2016-08-07 10:59:02    阅读次数:455
/proc/{pid} 内容解析
/proc/{pid} contains information about one process, this blog lists the detailed content. ...
分类:其他好文   时间:2016-08-07 10:55:25    阅读次数:418
Linux系统上的文本处理工具练习题
1、显示/proc/meminfo文件中以大小s开头的行;(要求:使用两种方式)2、显示/etc/passwd文件中不以/bin/bash结尾的行3、显示用户rpc默认的shell程序4、找出/etc/passwd中的两位或三位数5、显示/etc/grub2.cfg文件中,至少以一个空白字符开头的且后面存非空白字符的行6、找出"net..
分类:系统相关   时间:2016-08-07 01:05:39    阅读次数:1209
Linux系统目录结构
整体分类:/dev/设备目录/etc/配置文件以及服务启动的目录/proc显示内核及进程信息虚拟文件系统/tmp临时文件目录/home普通用户家目录/var变化目录,一般是日志文件的目录/usr用户程序及数据,帮助文件等目录/bin、/sbin、/usr/sbin用户命令目录
分类:系统相关   时间:2016-08-06 22:02:56    阅读次数:222
/proc/sys/fs 内容解析
This subdirectory contains specific file system, file handle, inode, dentry and quota information. ...
分类:其他好文   时间:2016-08-06 19:04:03    阅读次数:1302
kvm虚拟机
环境CentOSrelease7.2x86_644核8G内存查看是否支持虚拟技术#cat/proc/cpuinfo|egrep‘vmx|svm‘ ......eagerfpupnipclmulqdqdtes64monitords_cpl......安装kvmyuminstallqemu-kvmqemu-imgvirt-managerlibvirtlibvirt-pythonpython-virtinstlibvirt-clientvirt-installvirt-viewer..
分类:其他好文   时间:2016-08-06 14:36:24    阅读次数:281
Linux文本处理练习题
1、显示/proc/meminfo文件中以大小s开头的行;(要求:使用两种方式)第一种:[root@localhost~]#grep-i"^s"/proc/meminfo SwapCached:0kB SwapTotal:4194300kB SwapFree:4194300kB Shmem:9216kB Slab:78280kB SReclaimable:29356kB SUnreclaim:48924kB第二种:[root@localhost~]..
分类:系统相关   时间:2016-08-06 14:33:27    阅读次数:565
linux 查看版本
# cat /proc/version Linux version 2.6.18-348.el5 (mockbuild@x86-002.build.bos.redhat.com) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-54)) #1 SMP Wed N ...
分类:系统相关   时间:2016-08-06 08:25:57    阅读次数:213
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!