Forum Replies Created

Viewing 15 posts - 5,521 through 5,535 (of 6,486 total)

  • RE: Hidden RBAR: Triangular Joins

    timothyawiseman (12/6/2007)


    Matt Miller (12/6/2007)


    Total disregard for the physical layer implementing this is precisely why something like this is a bad example of set-based (in my mind not even deserving...

  • RE: Hidden RBAR: Triangular Joins

    cs_troyk (12/6/2007)


    Matt Miller (12/6/2007)


    Well - set-based processing entails a bit more than either description. Jeff's taking issue with the fact that the external query has to be evaluated one...

  • RE: Select Data Base on DATE and TIME Range

    Assuming you're passing the parameters as strings, you could try...

    create proc myproc(@startdatestr as varchar(20),@enddatestr as varchar(20))

    as

    begin

    declare @startdate datetime

    declare @enddate datetime

    select

    @startdate=cast(@startdatestr+' 05:30pm' as datetime),

    ...

  • RE: Hidden RBAR: Triangular Joins

    Well - set-based processing entails a bit more than either description. Jeff's taking issue with the fact that the external query has to be evaluated one single row at...

  • RE: Select Data Base on DATE and TIME Range

    Have you tried:

    where

    orderDate between '12/5/2007 5:30pm' and '12/6/2007 5:30pm'

    you can also use a CAST to make sure it goes into a datetime, but the syntax above will do the CAST...

  • RE: Another Raid config question

    Also - Backups are just about the heaviest load you can put down on storage volumes. Since RAID-5 is penalized for writes - I wouldn't use that on the...

  • RE: Query for nth lowest sequence in a group

    SQL33 (12/6/2007)


    As was initially requested (....I want to query the data shown below in the first dataset to return each entire row containing the nth lowest sequence number for each...

  • RE: Query for nth lowest sequence in a group

    johnsql (12/6/2007)


    Sergiy (12/6/2007)


    And, how do you think it is sorted?

    I agree with Sergiy. I think about the physical order data appears in the table.

    screw the physical order - I'm looking...

  • RE: Query for nth lowest sequence in a group

    SQL33 (12/6/2007)


    That is a BIG IF!!! LOL. But... seriously, it needs to sort by only the sequence number for each customer link, withOUT the cuslink.

    That's the point isn't it?

    3...

  • RE: Quick One

    Jim Russell (12/6/2007)


    Interesting. In fact, in Access 2003 this query (where [isDate] is a check box field):

    SELECT [Elems - CPMIS].Name, [Elems - CPMIS].Typ

    FROM [Elems - CPMIS]

    WHERE IsDate;

    works fine.

    But...

  • RE: Query for nth lowest sequence in a group

    Actually - it's not incorrect. If you SORT by custlink and sequence, you end up with

    5432 3

    5432 21

    5432 22...

  • RE: CPU 100%...

    Grant Fritchey (12/6/2007)


    It's never a very popular thing to say, but don't share the SQL Server server with any other process. It's a pretty safe rule of thumb (yeah, there...

  • RE: All I Want For Christmas Is ...

    For a little levity as to "santa" requests, here's a kind of funny take on one of those "Microsoft'isms" gone bad..... I still haven't fully recovered from the laugh...

  • RE: Constraints that doesn't allow ID from another table.

    I don't know if this will help at all, but here goes:

    If you track in the parent table which "table" that particular key exists in, you can get most of...

  • RE: The number of requests for "XXXServer\XXXUser" has exceeded the maximum number allowed for a single user.

    There are settings in the rsreportserver.config file that might help with that...BOL mentions looking for this setting:

    MaxActiveReqForOneUser

    Specifies the maximum number of simultaneous and in-progress connections that a single...

Viewing 15 posts - 5,521 through 5,535 (of 6,486 total)