home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / database / ingres / 1279 < prev    next >
Encoding:
Text File  |  1992-09-01  |  1.5 KB  |  44 lines

  1. Newsgroups: comp.databases.ingres
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!eff!news.oc.com!spssig.spss.com!uchinews!gsbacd.uchicago.edu!cs_mj
  3. From: cs_mj@gsbacd.uchicago.edu (Mark Jaeger)
  4. Subject: <None>
  5. Message-ID: <1992Sep1.151258.1@gsbacd.uchicago.edu>
  6. Lines: 32
  7. Sender: news@uchinews.uchicago.edu (News System)
  8. Organization:     
  9. References: <1992Aug31.180720.7712@desktalk.desktalk.com>
  10. Date: Tue, 1 Sep 1992 21:12:58 GMT
  11.  
  12. In article <1992Aug31.180720.7712@desktalk.desktalk.com>, eric@desktalk.com 
  13. (Eric Lieber) writes:
  14. > I want to insert a datetime value into a table. The format I have to use is:
  15. >     "yyyy-mm-dd hh24:mi:ss"
  16. > where hh24 is the 24 clock , (13:00 = 1:00 pm)
  17. > After reading the manual, I assume that the  II_DATE_FORMAT varable must
  18. >  be to set to  'SWEDEN/FINLAND'.
  19. >  The question is will Ingres  accept the following:
  20. >  insert into test_table (date_col)
  21. >            values (    "1992-12-31 13:45:59");
  22.  
  23. Yes, it works.  You can use either of these (for VMS):
  24.  
  25.         $ define ii_date_format "SWEDEN"
  26.         $ define ii_date_format "FINLAND"
  27.  
  28. For Unix csh:
  29.  
  30.         % setenv II_DATE_FORMAT SWEDEN
  31.         % setenv II_DATE_FORMAT FINLAND
  32.  
  33. Note that you must use _single_ quotes (') in your insert statement. 
  34. Double quotes (") are not allowed.
  35.  
  36. --Mark Jaeger                internet: cs_mj@gsbvax.uchicago.edu
  37. Graduate School of Business        yellnet:  (312) 702-0328
  38. University of Chicago            faxnet:   (312) 702-0233
  39. Disclaimer: My opinions are my own and not those of my employer.
  40. Ich bin ein Virus.  Mach' mit und kopiere mich in Deine .signature.
  41.  
  42.