上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 59 下一页
摘要: Sucurity domain : The database administrator defines the names of the users allowed to access a database. A security domain defines the settings that ... 阅读全文
posted @ 2013-01-18 09:23 神之一招 阅读(221) 评论(0) 推荐(0)
摘要: System : 一些特定的数据库动作,和具体的object 没有关系object : 和具体的 object 有关系,操作或访问该对象等等。System privilegesSystem Privileges:The privileges can be classified as follows:... 阅读全文
posted @ 2013-01-17 21:44 神之一招 阅读(371) 评论(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 神之一招 阅读(329) 评论(0) 推荐(0)
摘要: 主要是 约束 方面的基本知识维护完整性的 3 种方法 :- 应用代码保证 ( 有点悬,代码万一错误,数据完整性保证不了 ) 3 最后考虑使用- trigger ( 缺点,开销比较大 ) 第 2 考虑使用- constraint ( 性能高 , 开销小 ) 最优先考虑使用unique 可以为空,并且同... 阅读全文
posted @ 2013-01-14 23:18 神之一招 阅读(489) 评论(0) 推荐(0)
摘要: Objectives分类- 逻辑Single column or concatenaed Unique or nonunique function-based domain ( 使用比较少,索引数据库以外的数据 )- 物理 分区表 或 非分区表 B-tree : Normal or reverse ... 阅读全文
posted @ 2013-01-13 23:40 神之一招 阅读(400) 评论(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 神之一招 阅读(233) 评论(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 神之一招 阅读(527) 评论(0) 推荐(0)
摘要: ObjectivesStoring User DataRegular tablesPartitioned tablesIndex-organized tablesClustered tables普通表分区表 : 如果一个表太大了,那么就会在这个大表的基础上,在分为子表,叫做 partition. 每... 阅读全文
posted @ 2013-01-08 00:09 神之一招 阅读(307) 评论(0) 推荐(0)
摘要: 函数名 () // 函数名前面也可以加 function{ 命令1 …}可以将函数看做是脚本中的一段代码,但是有一个主要区别:执行函数时,它保留当前 shell 和内存信息,此外如果执行或调用一个脚本文件中的另一段代码,将创建一个单独的 shell, 因而取出所有原脚本中定义的存在变量。例如 :hello(){ echo “Hello, this function is only echo hello”}所有函数在使用前必须定义,这意味着必须将函数放在脚本开始部分,直至 shell 解析器首次防线它时,才可以使用。向函数传递参数向函数传递参数就像在一般脚本中使用特殊变量 $1, $2, … $ 阅读全文
posted @ 2013-01-05 14:17 神之一招 阅读(262) 评论(0) 推荐(0)
摘要: 如果一个 web 服务器能够交换信息脚本,那么它必须支持一种被称为公共网关接口的协议 cgi ( Common Gateway Interface )cgi 是一种规范,它规定了获取信息的脚本如何从服务器中取得信息或向服务器中写入信息。这种 cgi 脚本可以用任何语言来实现。通用网关接口,它是一段程序,运行在服务器上,提供同客户端HTML页面的接口,通俗的讲CGI就像是一座桥,把网页和WEB服务器中的执行程序连接起来,它把HTML接收的指令传递给服务器,再把服务器执行的结果返还给HTML页;用CGI可以实现处理表格,数据库查询,发送电子邮件等许多操作,最常见的CGI程序就是计数器。CGI使网页 阅读全文
posted @ 2013-01-05 14:16 神之一招 阅读(173) 评论(0) 推荐(0)
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 59 下一页