Re: Eliminate records

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance

From: CC&JM (anonymous_at_discussions.microsoft.com)
Date: 06/04/04


Date: Fri, 4 Jun 2004 08:33:14 -0700

Thanks Vinod

>-----Original Message-----
>Did you try using:
>
>Select DISTINCT Derived.* into DestinationT FROM
>( select EvClassDesc,
> STime,
> substring(Textdata,patindex('%
exec%',Textdata),217) as [TextData],
> objid
> from OriginalT
> where objid = 1111111 and EvClassDesc = 'SP:Star')
Derived
>.... (untested)
>
>WIll this help?
>
>--
>HTH,
>Vinod Kumar
>MCSE, DBA, MCAD, MCSD
>http://www.extremeexperts.com
>
>Books Online for SQL Server SP3 at
>http://www.microsoft.com/sql/techinfo/productdoc/2000/book
s.asp
>
>
>"CC&JM" <anonymous@discussions.microsoft.com> wrote in
message
>news:17fe001c44a19$f48dfb80$a301280a@phx.gbl...
>> Hello,
>>
>> The output of the following query returns two identical
>> records, i need to eliminate all records that are
>> identical but if i use the "distinct" before the
substring
>> function its returned one error.
>>
>> This is the query that i'm using:
>>
>> select EvClassDesc,
>> STime,
>> substring(Textdata,patindex('%
exec%',Textdata),217)
>> as [TextData],
>> objid
>> into DestinationT
>> from OriginalT
>> where objid = 1111111 and EvClassDesc = 'SP:Star'
>>
>> Thanks,
>> Best regards
>
>
>.
>



Relevant Pages

  • Re: Eliminate records
    ... Select DISTINCT Derived.* into DestinationT FROM ... > The output of the following query returns two identical ... > select EvClassDesc, ... > from OriginalT ...
    (microsoft.public.sqlserver.server)
  • Eliminate records
    ... The output of the following query returns two identical ... select EvClassDesc, ... into DestinationT ... from OriginalT ...
    (microsoft.public.sqlserver.server)