RE: Getting file attributes *before* upload: Was (Re: Help! (2))

2000-08-03 Thread Dave Watts
> And, actually, does a posting client have to send the > Content-Length header for uploaded files? I'm thinking *no*, > but I could be wrong on that. I'm pretty sure that the Content-Length header is required for all HTTP request body content; without it, the server wouldn't know that it's rece

RE: Getting file attributes *before* upload: Was (Re: Help! (2))

2000-08-03 Thread Rick Osborne
Content-Length header for uploaded files? I'm thinking *no*, but I could be wrong on that. -R -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 02, 2000 3:24 PM To: [EMAIL PROTECTED] Subject: Getting file attributes *before* upload: Was (R

RE: Help! (2)

2000-08-02 Thread Rick Osborne
! (2) You can only select ONE distinct column. SELECT DISTINCT Column1, Column2, etc Will give the distinct Column1 values. Dave - Original Message - From: "aslam bajaria" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 02, 2000 10:30 AM

RE: Help! (2)

2000-08-02 Thread Olive, Christopher M Mr NMR
left my on my other server. :) Chris Olive, DOEHRS Website Administrator -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 02, 2000 2:42 PM To: [EMAIL PROTECTED] Subject: Re: Help! (2) You'll get all of the column 2's that are assoc

Getting file attributes *before* upload: Was (Re: Help! (2))

2000-08-02 Thread Todd Ashworth
Todd Ashworth - Original Message - From: "Philip Arnold - ASP" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 02, 2000 12:41 PM Subject: RE: Help! (2) | Yup, kill the brackets - it was originally posted (by Johan) to point out | that you shoul

Re: Help! (2)

2000-08-02 Thread David E. Crawford
This is a multi-part message in MIME format. --=_NextPart_000_0019_01BFFCB1.51F1B830 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Re: Help! (2)This depends on the database. Access will allow you to: select distinct fiel

Re: Help! (2)

2000-08-02 Thread Dave Hannum
sday, August 02, 2000 11:28 AM Subject: RE: Help! (2) that's not technically correct. if you SELECT DISTINCT Column1, Column2 you will get the distinct combinations of Column1, Column2. Chris Olive, DOEHRS Website Administrator -Original Message- From: Dave Hannum [mailto:[EMAIL PRO

RE: Help! (2)

2000-08-02 Thread Philip Arnold - ASP
> select distinct(*) gives an error. > Also > select distinct(column1, column2,...,LastColumn) gives > an error. > > Can someone tell me how to avoid this error. Yup, kill the brackets - it was originally posted (by Johan) to point out that you should put all of the column names in select distin

RE: Help! (2)

2000-08-02 Thread Steve Martin
select distinct column1, column2,...,LastColumn > -Original Message- > From: aslam bajaria [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 02, 2000 15:31 > To: [EMAIL PROTECTED] > Subject: RE: Help! (2) > > > select distinct(*) gives an error. > Als

Re: Help! (2)

2000-08-02 Thread Todd Ashworth
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 02, 2000 10:30 AM Subject: RE: Help! (2) | select distinct(*) gives an error. | Also | select distinct(column1, column2,...,LastColumn) gives | an error. | | Can someone tell me how to avoid this error. | | Appreciate. | A.B. |

RE: Help! (2)

2000-08-02 Thread Olive, Christopher M Mr NMR
AM To: [EMAIL PROTECTED] Subject: Re: Help! (2) You can only select ONE distinct column. SELECT DISTINCT Column1, Column2, etc Will give the distinct Column1 values. Dave - Original Message - From: "aslam bajaria" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Re: Help! (2)

2000-08-02 Thread Dave Hannum
You can only select ONE distinct column. SELECT DISTINCT Column1, Column2, etc Will give the distinct Column1 values. Dave - Original Message - From: "aslam bajaria" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 02, 2000 10:30 AM Subject:

RE: Help! (2)

2000-08-02 Thread Kevin Queen
Try SELECT DISTINCT col1, col2, ... FROM WHERE 1=1 (* Notice the absence of Parens) -Kevin -Original Message- From: aslam bajaria [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 02, 2000 10:31 AM To: [EMAIL PROTECTED] Subject: RE: Help! (2) select distinct(*) gives an error

RE: Help! (2)

2000-08-02 Thread aslam bajaria
select distinct(*) gives an error. Also select distinct(column1, column2,...,LastColumn) gives an error. Can someone tell me how to avoid this error. Appreciate. A.B. --- Johan Coens <[EMAIL PROTECTED]> wrote: > Maybe: > > Step 1: SELECT DISTINCT ... (all colums), name it > qryAllRecords >