create_rule.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:5k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "CREATE RULE" {bold} " The semantics of a rule is that at the time an individual instance is accessed, updated, inserted or deleted, there is a current instance (for retrieves, updates and deletes) and a new instance (for 
  2. updates and appends). If the event specified in the ON clause and the condition specified in the WHERE clause are true for the current instance, the action part of the rule is executed. First, 
  3. however, values from fields in the current instance and/or the new instance are substituted for current.attribute-name and new.attribute-name. 
  4. The action part of the rule executes with the same command and transaction identifier as the user command that caused activation. 
  5. " {} "Synopsis" {bold} "
  6. CREATE RULE name
  7.     AS ON event
  8.     TO object [ WHERE condition ]
  9.     DO [ INSTEAD ] [ action | NOTHING ]
  10.     
  11. " {code} "Inputs" {bold} "
  12. " {} "name" {italic} "
  13.        The name of a rule to create. 
  14. " {} "event" {italic} "
  15.        Event is one of select, update, delete or insert. 
  16. " {} "object" {italic} "
  17.        Object is either table or table.column. 
  18. " {} "condition" {italic} "
  19.        Any SQL WHERE clause. new or current can appear instead of an instance variable whenever an instance variable is permissible in SQL. 
  20. " {} "action" {italic} "
  21.        Any SQL statement. new or current can appear instead of an instance variable whenever an instance variable is permissible in SQL. 
  22.       
  23. " {} "Outputs" {bold} "
  24. " {} "CREATE" {italic} "
  25.        Message returned if the rule is successfully created.
  26.        
  27. " {} "Usage" {bold} "
  28. Make Sam get the same salary adjustment as Joe: 
  29. " {} "
  30. create rule example_1 as
  31.     on update EMP.salary where current.name = "Joe"
  32.     do update EMP (salary = new.salary)
  33.     where EMP.name = "Sam"
  34.    
  35. " {code} "
  36. At the time Joe receives a salary adjustment, the event will become true and Joe's current instance and proposed new instance are available to the execution routines. Hence, his new salary is 
  37. substituted into the action part of the rule which is subsequently executed. This propagates Joe's salary on to Sam. 
  38. Make Bill get Joe's salary when it is accessed: 
  39. " {} "
  40. create rule example_2 as
  41.     on select to EMP.salary
  42.     where current.name = "Bill"
  43.     do instead
  44.     select (EMP.salary) from EMP
  45.         where EMP.name = "Joe"
  46.    
  47. " {code} "
  48. Deny Joe access to the salary of employees in the shoe department (current_user returns the name of the current user): 
  49. " {} "  
  50. create rule example_3 as
  51.     on select to EMP.salary
  52.     where current.dept = "shoe" and current_user = "Joe"
  53.     do instead nothing
  54.    
  55. " {code} "
  56. Create a view of the employees working in the toy department. 
  57. " {} "
  58. create TOYEMP(name = char16, salary = int4)
  59. create rule example_4 as
  60.     on select to TOYEMP
  61.     do instead
  62.     select (EMP.name, EMP.salary) from EMP
  63.         where EMP.dept = "toy"
  64.    
  65. " {code} "
  66. All new employees must make 5,000 or less 
  67. " {} "
  68. create rule example_5 as
  69.     on insert to EMP where new.salary > 5000
  70.     do update newset salary = 5000
  71. " {code} "Notes" {bold} "
  72. A caution about SQL rules is in order. If the same class name or instance variable appears in the event, the condition and the action parts of a rule, they are all considered different tuple 
  73. variables. More accurately, new and current are the only tuple variables that are shared between these clauses. For example, the following two rules have the same semantics: 
  74. " {} "
  75. on update to EMP.salary where EMP.name = "Joe"
  76.     do update EMP ( ... ) where ...
  77. on update to EMP-1.salary where EMP-2.name = "Joe"
  78.     do update EMP-3 ( ... ) where ...
  79.     
  80. " {code} "
  81. Each rule can have the optional tag INSTEAD. Without this tag, action will be performed in addition to the user command when the event in the condition part of the rule occurs. Alternately, 
  82. the action part will be done instead of the user command. In this later case, the action can be the keyword NOTHING. 
  83. When choosing between the rewrite and instance rule systems for a particular rule application, remember that in the rewrite system, current refers to a relation and some qualifiers whereas in 
  84. the instance system it refers to an instance (tuple). 
  85. It is very important to note that the rewrite rule system will neither detect nor process circular rules. For example, though each of the following two rule definitions are accepted by Postgres, the 
  86. retrieve command will cause Postgres to crash: 
  87. Example 14-1. Example of a circular rewrite rule combination.
  88. " {} "
  89. create rule bad_rule_combination_1 as
  90.     on select to EMP
  91.     do instead select to TOYEMP
  92. create rule bad_rule_combination_2 as
  93.     on select to TOYEMP
  94.     do instead select to EMP
  95.      
  96. " {code} "
  97. This attempt to retrieve from EMP will cause Postgres to crash. 
  98. " {} "
  99. select * from EMP
  100.       
  101. " {code} "
  102. You must have rule definition access to a class in order to define a rule on it. Use GRANT and REVOKE to change permissions. 
  103. " {} "Bugs" {bold} "
  104. The object in a SQL rule cannot be an array reference and cannot have parameters. 
  105. Aside from the "oid" field, system attributes cannot be referenced anywhere in a rule. Among other things, this means that functions of instances (e.g., "foo(emp)" where 
  106. "emp" is a class) cannot be called anywhere in a rule. 
  107. The rule system stores the rule text and query plans as text attributes. This implies that creation of rules may fail if the rule plus its various internal representations exceed some value that is on 
  108. the order of one page (8KB). "