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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "SET" {bold} " will modify configuration parameters for variable during a session. 
  2. " {} "Synopsis" {bold} "
  3. " {} "
  4. SET variable { TO | = } {
  5.    'value' | DEFAULT }
  6. SET TIME ZONE { 'timezone' | LOCAL | DEFAULT };
  7. SET TRANSACTION ISOLATION LEVEL { READ COMMITTED | SERIALIZED }
  8. " {code} "Usage" {bold} "
  9. " {} "
  10.    --Set the style of date to ISO:
  11.    --
  12.    SET DATESTYLE TO 'ISO';
  13.   
  14.  
  15.    --Enable GEQO for queries with 4 or more tables
  16.    --
  17.    SET GEQO ON=4;
  18.   
  19.  
  20.    --Set GEQO to default:
  21.    --
  22.    SET GEQO = DEFAULT;
  23.   
  24.  
  25.    --set the timezone for Berkeley, California:
  26.    SET TIME ZONE 'PST8PDT';
  27.    
  28.    SELECT CURRENT_TIMESTAMP AS today;
  29.    
  30.    today
  31.    ----------------------
  32.    1998-03-31 07:41:21-08
  33.   
  34.  
  35.    --set the timezone for Italy:
  36.    SET TIME ZONE 'Europe/Rome';
  37.    
  38.    SELECT CURRENT_TIMESTAMP AS today;
  39.    
  40.    today
  41.    ----------------------
  42.    1998-03-31 17:41:31+02
  43.    
  44. " {code} "Notes" {bold} "
  45. The SET variable statement is a Postgres language extension. 
  46. Refer to SHOW and RESET to display or reset the current values. "