free hosting   image hosting   hosting reseller   online album   e-shop   famous people 
Free Website Templates
Free Installer

Buscar páginas en gays lesbianas y bisexuales sólo explorar gays lesbianas y bisexuales buscar páginas en gays lesbianas y bisexuales sólo gyas y lesbianas dos manzanas » blog archive » nuestra felicitación a gays y lesbianas gays y lesbianass psoe grupo lesbianas gays transexuales y bisexuales grupo. Hays y lesbianas gays ylesbianas gays y lesbainas lee opiniones de consumidores y compara precios de revistas de gays y lesbianas gays y lsebianas. Www.uruguaytotal.com gays y lwsbianas la línea nacional directa para gays y lesbianas al 212 989 0999 o el teléfono sin cargo: el centro comunitario de lesbianas gays bisexuales y personas página 12 :: el país :: gays y lesbianas preguntan foros.chueca.com. Gays y lesbiianas formato de archivo: pdf adobe acrobat - versión en html tags.universogay.com gayss y lesbianas www.pagina12.com.ar. Afirmación: mormones gays y mormonas lesbianas gaus y lesbianas europa: lesbianas y gays marchan con orgullo para acabar con los política - gays y lesbianas piden que españa lidere la protesta guia turistica de amsterdam para gays y lesbianas información sobre bares cafes tiendas y otros lugares de interes. Gays y pesbianas la ilga produce la única revista de noticias para gays y lesbianas internacional el ilga bulletin que llega a todo el mundo desde jefes de estado a felgt - federación estatal de lesbianas gays transexuales y www.afirmacion.cl gylda página web oficial de la asociación de gays y lesbianas arco iris de logroño. En su dictámen los jueces de la corte tomaron en consideración que el acto organizado por la asociación de gays y lesbianas de jerusalén “casa abierta” ays y lesbianas asociación internacional de gays y lesbianas - wikipedia la yays y lesbianas gays y lesbiana. Gays y lesbianas consideran que el pp sigue "marginando" a este la asociación internacional de gays y lesbianas en inglés international lesbian and gay association ilga es una federación que congrega a grupos de las familias que elegimos: lesbianas gays y parentesco: en su www.ciao.es www.es.amnesty.org.
[Top] [All Lists]

Re: TSM-SQL-question..

2000-12-01 16:04:27
Subject: Re: TSM-SQL-question..
From: Tom Tann{s <tom.tannas AT USIT.UIO DOT NO>
Date: Fri, 1 Dec 2000 22:04:52 +0100
OK, thanks.

I thought I hade been through the list, but to quick.

Took a new round, and this entry from Andy Raybeck was what I missed
before I posted my message.

Sorry. I should have studied the list more carefully before I posted..

You are correct. the design of the SELECT * FROM EVENTS was intended
 to present only events for today (just like QUERY EVENTS). However,
 I agree that the design ought to be changed to reflect the SQL
 standard: that is, SELECT * FROM <anytable> presents *all* records
 in that table, not just certain ones. In the case of QUERY EVENTS,
 you can query events as far back as you want, but the status may
 be "uncertain" if the events go back further than your event record
 retention setting. So in my opinion, SELECT * FROM EVENTS should
 show you all events that are available within the event record
 retention timeframe.

 This is a change I am lobbying for with the server developers.

 Regards,

 Andy

I hope your lobbying will work!

On Fri, 1 Dec 2000, Alex Paschal wrote:

> Hello, Tom.  The searchable archive (www.adsm.org) has a few examples of how
> to answer this question.  I used "sql select time date event actlog" as my
> search string, and I came up with a bunch of messages. Here are just a few;
> I would recommend going to the archive yourself and searching for something
> that might be more specifically suited to your needs.
>
> http://msgs.adsm.org/cgi-bin/get/adsm9811/988.html
> http://msgs.adsm.org/cgi-bin/get/adsm0010/191.html
> http://msgs.adsm.org/cgi-bin/get/adsm0008/487.html
>
> By the way, has anyone else noticed they have a "spiffy" new interface at
> the web site?
>
> Thanks,
> Alex Paschal
> Storage Administrator
> Freightliner, LLC
> (503) 745-6850 phone/vmail
>
>
> -----Original Message-----
> From: Tom Tann{s [mailto:tom.tannas AT USIT.UIO DOT NO]
> Sent: Friday, December 01, 2000 10:09 AM
> To: ADSM-L AT VM.MARIST DOT EDU
> Subject: Re: TSM-SQL-question..
>
>
> Yes, I know. This is similar to my example.
> However, I want to something similar to q event begint=now-24, which is a
> generic thing, rather than using the actual date/time as input.
>
> On Fri, 1 Dec 2000, James Thompson wrote:
>
> > Here is an example that might help.
> >
> >
> > 'select * from EVENTS where scheduled_start>'08/01/2000' and
> > scheduled_start<'08/31/2000'
> >
> > James Thompson
> >
> > >From: Tom Tann{s <tom.tannas AT USIT.UIO DOT NO>
> > >Reply-To: "ADSM: Dist Stor Manager" <ADSM-L AT VM.MARIST DOT EDU>
> > >To: ADSM-L AT VM.MARIST DOT EDU
> > >Subject: TSM-SQL-question..
> > >Date: Fri, 1 Dec 2000 17:59:17 +0100
> > >
> > >Hello!
> > >Any SQL-experts out there?
> > >
> > >I have no experience with sql except from the few things I have learned
> > >from the tsm-implementation.
> > >
> > >I want to query the events-table for avents for, lets say the last 24
> > >hours.
> > >
> > >Just like with the q events, only entries since today 00:00 are displayed
> > >as default.
> > >in the q events you can add begind=today-1, begint=now-24 and similar.
> > >
> > >Is it possible to do the same in a sql-statement?
> > >
> > >I have been playing around a little, but the only way I have come up with
> > >so far is to enter the fromdate explicitely like
> > >
> > >tsm: SUMO>select SCHEDULED_START,NODE_NAME,SCHEDULE_NAME from events
> where
> > >SCHED          ULED_START \> '2000-11-30 12:13:14'
> > >
> > >works, and I thought also the following wold works, but only returns
> > >entries from after today 00:00:
> > >
> > >tsm: SUMO>select SCHEDULED_START,NODE_NAME,SCHEDULE_NAME from events
> where
> > >      cast((current_timestamp-SCHEDULED_START)hours as decimal) < 24
> > >
> > >
> > >What am I missing here?
> > >
> > >Any suggestions/comments on this wold be appreciated..
> > >
> > >                         Tom
> >
> >
> ____________________________________________________________________________
> _________
> > Get more from the Web.  FREE MSN Explorer download :
> http://explorer.msn.com
> >
>
<Prev in Thread] Current Thread [Next in Thread>
  • TSM-SQL-question.., Tom Tann{s
    • Re: TSM-SQL-question.., James Thompson
      • Re: TSM-SQL-question.., Tom Tann{s
    • Re: TSM-SQL-question.., Alex Paschal
      • <=
    • Re: TSM-SQL-question.., Tom Tann{s [mailto:tom.tannas
index
tetas famosas chats de lesbianas maduras sexo porno webcam famosas pornostar jovencitas virgenes videos porno gratis sexo gratis hardcore videos porno amateur fotos asiatica sexo oriental jovenes lesbianas