Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 4,080 total)

  • RE: Are the posted questions getting worse?

    Okay, gang, I'm trying a new approach to lazy posters. Experiment #1 is found here.

    Steve, if you would prefer I didn't go forward with this...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Problem with Query

    I feel compelled to chide you a bit If you know it wasn't the correct format to post in, why didn't you do it the right way?...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Missing or null data points count dynamically.

    Could you please supply a few rows of sample data for each table, and the expected results. It would allow the people trying to help you to test...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Are the posted questions getting worse?

    I obviously missed out on SO much by being born too soon.

    Ph'nglui mglw'nafh C'thulhu R'lyeh wgah'nagl fhtagn

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Are the posted questions getting worse?

    What kind of roleplaying game involves conspiracies, Gail?

    fnord

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Are the posted questions getting worse?

    No need to be so formal. Y'all can call me for short.

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Are the posted questions getting worse?

    Thanks, Lynn, and hi everybody. Forgive the odd name. It's a personal quirk that when I'm feeling somewhat uncertain and tentative, I derive to a...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: free text search

    In the stored proc, I check for the following matches.

    firstname = search text or lastname = search text or (firstname+lastname = searchtext) or (lastname+firstname = searchtext).

    I did not notice performance...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: LinkedServer - still mystified

    Another potential solution is to have a stored procedure on the linked server which accepts a number of accounts and returns the results just for those accounts. The stored...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Sort a string in a stored procedure: not order by

    This will get it done. It looks clunky, but it runs fast. You can build it into a user_defined function or CROSS APPLY it to the...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: free text search

    Upon re-reading, I see that you have the user entering a single search string. I think it would be better to have them enter a first name and...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: free text search

    I have a concern from looking at your "trivial" example. If your user enters both a first name of "John" and a last name of "Smith", the...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Getting Previous Date of and attribute (NO_ofCards_Ordered)

    Could you please provide a few rows of sample data, and what you would expect the output to look like based on that sample data?

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: Need Help in Date Functions

    Questions:

    Is the start date you entered considered to be day 1 of week 1? In other words, if you enter a start date which is a Wednesday,...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

  • RE: CONVERT STRING INTO DATETIME

    Those character strings will CAST or CONVERT directly into smalldatetime, or even implicitly convert.

    select CAST('090715' as smalldatetime)

    -- implicit conversion

    declare @date as smalldatetime

    set @date = '090715'

    select @date as [@date]

    Can you show...

    __________________________________________________

    Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
    Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills

Viewing 15 posts - 2,731 through 2,745 (of 4,080 total)