RESET
  
  SQL - Language Statements
 
 
  
   RESET
  
  
   Restores run-time parameters for session to default values
  
 
 
  
   1999-07-20
  
  
RESET variable
  
  
   
    1998-09-24
   
   
    Inputs
   
   		
    
     
      variable
      
       
	Refer to
	
	for more information on available
	variables.
       
      
     
    
   
  
  
   
    1998-09-24
   
   
    Outputs
   
   
    
     
      
RESET VARIABLE
       
      
       
	Message returned if 
	variable is successfully reset
	to its default value..
       
      
     
    
   
  
 
  
 
  
   1998-09-24
  
  
   Description
  
  
   RESET restores variables to the
   default values.
   Refer to
   
   for details on allowed values and defaults.
   RESET is an alternate form for
   
SET variable = DEFAULT
   
  
  
   
    1998-09-24
   
   
    Notes
   
   
    RESET is a Postgres
    language extension.
   
   
    Use to
     and
    
    to manipulate variable values.
   
  
 
  
 
  
   Usage
  
  
   Set DateStyle to its default value:
   
RESET DateStyle;
   
  
  
   Set Geqo to its default value:
      
RESET GEQO;
   
  
 
 
  
   Compatibility
  
  
   
    1998-09-24
   
   
    SQL92
   
   
    There is no RESET in SQL92.