home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / doc / quel / create.doc < prev    next >
Encoding:
Text File  |  1992-11-19  |  1.2 KB  |  38 lines

  1.  
  2.  
  3.  
  4.  
  5.      CREATE(QUEL)                 1/26/79                 CREATE(QUEL)
  6.  
  7.  
  8.  
  9.      NAME
  10.           create - create a new relation
  11.  
  12.      SYNOPSIS
  13.           _c_r_e_a_t_e relname (domname_1 = format {, domname_2 = format })
  14.  
  15.      DESCRIPTION
  16.           _C_r_e_a_t_e will enter a new relation into the  data  base.   The
  17.           relation  will  be  ``owned'' by the user and will be set to
  18.           expire after seven days.  The name of the relation  is  _r_e_l_-
  19.           _n_a_m_e and the domains are named _d_o_m_n_a_m_e_1, _d_o_m_n_a_m_e_2, etc.  The
  20.           domains are created with the type specified by _f_o_r_m_a_t.  For-
  21.           mats are described in the quel(quel) manual section.
  22.  
  23.           The relation is created as a paged heap with  no  data  ini-
  24.           tially in it.
  25.  
  26.           A relation can have no more than  49  domains.   A  relation
  27.           cannot have the same name as a system relation.
  28.  
  29.      EXAMPLE
  30.           /* Create relation emp with domains name, sal and bdate */
  31.              create emp (name = c10, salary = f4, bdate = i2)
  32.  
  33.      SEE ALSO
  34.           append(quel), copy(quel), destroy(quel), save(quel)
  35.  
  36.      BUGS
  37.  
  38.