Forum Replies Created

Viewing 15 posts - 3,571 through 3,585 (of 4,081 total)

  • RE: View Dependency + Tracking is possible ?

    A simple way? None comes to mind.

    However, the solution would center around the original code I posted. Off the top of my head...

  • RE: Are the posted questions getting worse?

    You could always unsubscribe, noel. 😛

  • RE: give me your suggestion

    You DID get the compliment from an MVP

    I heard you were an MVP. What I meant to say was that I took more pride in that compliment...

  • RE: Are the posted questions getting worse?

    We are getting ideas.

    OMG NOOOOOOOooooooooo :w00t:

    Steve, a suggestion for enhancements: Could each block have a copy button above it to make it easier to cut and paste...

  • RE: give me your suggestion

    Steve posted his times for 11000 rows as follows

    SQL Server Execution Times:

    CPU time = 4992 ms, elapsed time = 5213 ms.

    When I tested it on my...

  • RE: give me your suggestion

    Thanks Jeff... I take more pride in a compliment like that from you than I would from an MVP.... although unfortunately it doesn't look as good on a resume. ...

  • RE: Two scripts to spell out numbers in words

    I also found the function to be slow in testing. I had an alternate way of generating the number that was much quicker, but for performance, the best...

  • RE: give me your suggestion

    I just tested the function from that article ... it is SLOW!!!!

    9999 rows converted using that function takes almost 20 seconds!!!

    set statistics time on;

    -- test using join to existing table

    select...

  • RE: FTS CONTAINS vs. %LIKE%

    I'm afraid I don't have an answer for you. We haven't implemented full-text search in production. Someone suggested using it to replace some existing search functionality...

  • RE: FTS CONTAINS vs. %LIKE%

    Empire State Building

    State Building

    Building

    Since you will be writing the parsing to build the strings, doing that shouldn't be a problem.

    How volatile is the data in the name...

  • RE: How generate Dates on the fly

    No sweat. I didn't see the requirement in the first post either. You owe me a millisecond 😉

  • RE: give me your suggestion

    Once the table is built it appears to be more efficient to just look a number up. Running the test below with 9999 different numbers, the...

  • RE: FTS CONTAINS vs. %LIKE%

    I've seen an article in here recently where someone had implemented a similar scheme. Essentially, at the time the name field was inserted, they parsed out all...

  • RE: give me your suggestion

    First, you should be warned that string manipulations like this should be done by the application, not in SQL. The reasons for this are to protect the...

  • RE: Building table dynamically fails

    DOH!! :w00t:

    That's what I get for having gotten away from using EXEC.

Viewing 15 posts - 3,571 through 3,585 (of 4,081 total)