上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 59 下一页
摘要: /* video 12 */Enumeration 枚举 ( 想象成组合在一起的项 )public static final int ONE = 1; // java 一般用以前的方式,就是这种,而不是新的枚举类型 switch (num) { case ONE: println("one... 阅读全文
posted @ 2013-01-18 09:23 神之一招 阅读(258) 评论(0) 推荐(0)
摘要: System : 一些特定的数据库动作,和具体的object 没有关系object : 和具体的 object 有关系,操作或访问该对象等等。System privilegesSystem Privileges:The privileges can be classified as follows:... 阅读全文
posted @ 2013-01-17 21:44 神之一招 阅读(346) 评论(0) 推荐(0)
摘要: A profile is a named set(集合) of password and resource limits.what is a profile ?Password aging and expirationPassword historyPassword complexity verif... 阅读全文
posted @ 2013-01-15 00:03 神之一招 阅读(305) 评论(0) 推荐(0)
摘要: 主要是 约束 方面的基本知识维护完整性的 3 种方法 :- 应用代码保证 ( 有点悬,代码万一错误,数据完整性保证不了 ) 3 最后考虑使用- trigger ( 缺点,开销比较大 ) 第 2 考虑使用- constraint ( 性能高 , 开销小 ) 最优先考虑使用unique 可以为空,并且同... 阅读全文
posted @ 2013-01-14 23:18 神之一招 阅读(469) 评论(0) 推荐(0)
摘要: Objectives分类- 逻辑Single column or concatenaed Unique or nonunique function-based domain ( 使用比较少,索引数据库以外的数据 )- 物理 分区表 或 非分区表 B-tree : Normal or reverse ... 阅读全文
posted @ 2013-01-13 23:40 神之一招 阅读(374) 评论(0) 推荐(0)
摘要: ( 01 ~ 20 )重点句型How are you ? answer: Not too bad!/Pretty good!/Couldn’t be better!/Just so-so/I’m just my oldself!Haven’t seen you for a long time. 好久不见What is luccy’s job ?What nationality are you ?Are you a teacher ?How are you today ?Whose shirt is that ?What color is luccy’s dress ?Do you mind m 阅读全文
posted @ 2013-01-10 09:04 神之一招 阅读(403) 评论(0) 推荐(0)
摘要: 完整类 实例Student class/** * The Student class keeps track of the following pieces of data * about a student: the student's name, ID number, the number of * credits the student has earned toward graduation, and whether * the student is paid up with respect to university bills. * All of this informat 阅读全文
posted @ 2013-01-10 09:04 神之一招 阅读(220) 评论(0) 推荐(0)
摘要: ObjectivesStoring User DataRegular tablesPartitioned tablesIndex-organized tablesClustered tables普通表分区表 : 如果一个表太大了,那么就会在这个大表的基础上,在分为子表,叫做 partition. 每... 阅读全文
posted @ 2013-01-08 00:09 神之一招 阅读(285) 评论(0) 推荐(0)
摘要: 函数名 () // 函数名前面也可以加 function{ 命令1 …}可以将函数看做是脚本中的一段代码,但是有一个主要区别:执行函数时,它保留当前 shell 和内存信息,此外如果执行或调用一个脚本文件中的另一段代码,将创建一个单独的 shell, 因而取出所有原脚本中定义的存在变量。例如 :hello(){ echo “Hello, this function is only echo hello”}所有函数在使用前必须定义,这意味着必须将函数放在脚本开始部分,直至 shell 解析器首次防线它时,才可以使用。向函数传递参数向函数传递参数就像在一般脚本中使用特殊变量 $1, $2, … $ 阅读全文
posted @ 2013-01-05 14:17 神之一招 阅读(250) 评论(0) 推荐(0)
摘要: 如果希望在系统启动时自动运行某些应用程序,服务或脚本,或者在系统重启动时能够正确的关闭这些程序,那么需要创建运行级别脚本,rc.scripts 运行级别脚本,一般保存在 /etc/rcN.d 或 /etc/rc.d/rcN.d 目录下其中 N 是一个数字,通常是 7个,inittab ( init 这个进程,通过 inittab 的配置文件来获得上述信息 )该文件格式为 :id : rstart : action : processid : 唯一标识rstart : 进程运行级别action 告诉 init 进程如何对待 process 所对应的进程启动或停止服务的方法可以直接修改 initt 阅读全文
posted @ 2013-01-05 14:16 神之一招 阅读(194) 评论(0) 推荐(0)
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 59 下一页