ChinaUnix.net
相关文章推荐:

sap workflow step by step

step By step Install and configure Legato Networker Module for sap/3 for Oracle Place: MDCL Author : Eric Zhang 1. Install Legato Networker Module for sap on every sap machine . #pkgadd -d ./LGTOnmsap 2. Set PATH variable for both Oracle User and Root user GOAL: Add the 'save' command PATH examples: ======= root@sapprd3a # which save /usr/bin/nsr/save root@sapprd3a # su - orapd3 Sun Micros...

by Chinese_Dragon - 存储备份 - 2008-04-27 19:17:03 阅读(3985) 回复(5)

磁盘阵列

相关讨论

环境设置: set echo on; ACCEPT dba_pwd_src PROMPT 'Enter Password of user "sys" to create Streams Admin at Source : ' ACCEPT strm_pwd_src PROMPT 'Enter Password of Streams Admin "STRMADMIN" to be created at Source : ' ACCEPT dba_pwd_dest PROMPT 'Enter Password of user "sys" to create Streams Admin at Destination : ' ACCEPT strm_pwd_dest PROMPT 'Enter Password of Streams Admin "STRMADM...

by yxtg - Oracle - 2009-05-05 10:54:11 阅读(978) 回复(0)

jQuery的库,最新的下载可以到 这里 找到。这个指南提供一个基本包含实例的包供下载. 下载: jQuery Starterkit (译者Keel注:一定要下载这个包,光看文章不实践肯定是不行的。) 下载后解压缩,然后用你最喜欢的文本编辑器打开starterkit.html和custom.js这两个文件。(译者Keel注:这两个就是例子文件,所有的例子都用这两个例子作出,custom.js写jQuery代码,starterkit.html观察效果.建议用editPlus打开) 现在,我们就已经做好了一切准...

by qbq - Java文档中心 - 2008-11-20 17:34:55 阅读(776) 回复(0)

作者: limodou 联系: [email=limodou@gmail.com]limodou@gmail.com[/email] 版本: 0.2 主页: http://wiki.woodpecker.org.cn/moin/NewEdit BLOG: http://www.donews.net/limodou 版权: FDL 这是 Django 的系列教程。在写作中 Django 本身也在不停地发展变化,而且本人的水平有限,错误是难免的。欢迎你与我讨论 Django, Python , 甚至 NewEdit 相关的问题。 本文档在不继写作中,所有代码及文档源码存放于啄木鸟社区 SVN 中...

by ipyt - Python文档中心 - 2008-09-21 19:11:24 阅读(1375) 回复(0)

Configure NIS domain Default: NIS source files 存放在/etc目录下,这样map 的内容会与Master server的local files 相同,建议不要存放在/etc目录下。可通过修改/var/yp/Makefile,更改/etc换成你想要的directory。 … … # Set the following variable to "-b" to have NIS servers use the domain name # resolver for hosts not in the current domain. #B=-b B= DIR =/etc # # If the passwd, shadow and/or adjunc...

by 东方蜘蛛 - Solaris文档中心 - 2005-07-10 00:22:11 阅读(514) 回复(0)

Information: I want to limit user1 5M on one file system,such as:/data 1.modify /etc/vfstab ,at mount point options,change "-" to "rq" example: #vi /etc/vfstab ... ... /dev/dsk/c0t0d0s4 /dev/rdsk/c0t0d0s4 /var ufs 1 no - /dev/dsk/c0t0d0s6 /dev/rdsk/c0t0d0s6 /data ufs 2 yes rq ...... 2.#cd /data;touch quotas #chmod 600 ./quotas 3.#edquot...

by ycqi - Solaris - 2004-05-28 14:52:19 阅读(768) 回复(3)

Configure NIS domain Default: NIS source files 存放在/etc目录下,这样map 的内容会与Master server的local files 相同,建议不要存放在/etc目录下。可通过修改/var/yp/Makefile,更改/etc换成你想要的directory。 … … # Set the following variable to "-b" to have NIS servers use the domain name # resolver for hosts not in the current domain. #B=-b B= DIR =/etc # # If the passwd, shadow and/or adjunct file...

by ycqi - Solaris - 2003-08-13 16:19:48 阅读(2078) 回复(4)

stepstep INTO,step OVER 之间的区别? 请教! :)

by stephenxie2003 - AS400 - 2003-11-03 13:32:23 阅读(1943) 回复(7)

三 添加,修改,删除记录 3.1 添加记录 >INSERT [LOW_PRIOTIRY | DELAYED] [IGNORE] [INTO] table_name [(column_list)] VALUES(col_1_value [,col_2_value]...)[,(...)]...; 或者 >INSERT [LOW_PRIOTIRY | DELAYED] [IGNORE] [INTO] table_name SET col_1=col_1_value[,col_2=col_2_value]...; 或者 >INSERT [LOW_PRIOTIRY | DELAYED] [IGNORE] [INTO] table_name [(COLUMN_LIST)] SELECT select_statements;...

by keer2345 - MySQL文档中心 - 2006-05-01 09:00:55 阅读(588) 回复(0)

二 数据库,表和数据类型 2.1 数据库 查看已有的数据库 >SHOW DATABASES; 创建数据库 >CREATE DATABASE db_name; 查看当前所使用的数据库 >SELECT DATABASE(); 使用数据库 >USE db_name[;] 删除数据库 >DROP DATABASE db_name; 2.2 表 创建表 >CREATE [TEMPORARY] TABLE [IF NOT EXITSTS] table_name (create_defination,...) [[IGNORE|REPLACE] select_statment]; 比如 >CREATE TABLE product ( n...

by keer2345 - MySQL文档中心 - 2006-05-01 09:00:22 阅读(563) 回复(0)

一 熟悉mysql环境 1.1 登陆 >mysql [-h 主机名] [-u 用户名] [-p(密码)] 1.2 了解mysql 的环境 >select now(); >select user(),version(),now(); 1.3 中止服务器的连接 >quit 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/10869/showart_107487.html

by keer2345 - MySQL文档中心 - 2006-05-01 08:59:34 阅读(724) 回复(0)