Forum Replies Created

Viewing 15 posts - 54,016 through 54,030 (of 59,068 total)

  • RE: Best Guideline or Strategy when dealing with records

    Heh... personally, I'm glad banks are over-cautious with changes to software.

  • RE: select statement with special char

    select EMPLNO,[Full Name],[CCNAME],[CC] from HREMP where [Full Name] like '%" & REPLACE(strS,'''','''''') & "%' and [CC] like '01032%' and (EMPSTATUS <> 90 or EMPSTATUS is null) order by [Full NAME];"

  • RE: Can Maintenance plan slow down the application?

    Depends on what the maintenance plan is doing... DBCC REINDEX, can crush performance on very large tables that have large indexes or a CLUSTERED index that doesn't follow a chronilogical...

  • RE: How to evaluate tools?

    Vivien Xing (11/21/2007)


    This is a question I was being asked during an interview a couple years ago. I think it is a pretty good open question. I keep...

  • RE: String Functions

    How about ...

    Perfect...

  • RE: Need help resolving blocking problems

    EDIT: Actually, create a database on the new server with the same name as the database you're linking to on the old server. Create views which have the same name...

  • RE: Query Help

    Why not just a Tally table driven split function, then?

  • RE: Using INSERT between dates?

    Matt Miller (11/19/2007)


    Hey - if you're going to give me a new stapler, expect to find some things stapled.....:D

    Heh! If that's true, guess I need to give you a lawnmower...

  • RE: Best Guideline or Strategy when dealing with records

    Joe Contreras (11/20/2007)


    Thanks for the information. I just found out that my boss is leaving the company and he's the only one that supports and buys into my design...

  • RE: displaying records horizontally

    Heh... well said Robert and ALI...

    Yeup... that's kinda the way I figure it but we're only guessing...

    The bad part here is a huge opportunity was missed to help the users...

  • RE: Packing Joins

    Jeff,

    My apologies to you for incorrect comments. Anyhow, im still curious to see your version of it.

    No, no... not a problem, Ramesh. And, the RowNumber Over Partition to...

  • RE: Packing Joins

    Allen,

    I'm not 100% sure because I don't have 2k5, but I don't believe that Ramesh's wonderfully easy to read code is going to do the trick for you because it...

  • RE: Use GETDATE() within a UDF

    Jim,

    Is this in reference to the table variable function you created that calls itself?

  • RE: Packing Joins

    I don't know what Celko's "Packing Join" is, but I think you're gonna need another column like a date/time or and IDENTITY column even if you were to use a...

  • RE: Query Help

    "REVERSE" is pretty expensive performance-wise... PARSENAME still does the trick even with the modified list...

    CREATE TABLE dbo.Hits (RowNum INT IDENTITY(1,1) PRIMARY KEY, Site VARCHAR(100))

    INSERT INTO dbo.Hits (Site)

    SELECT 'abc.support.microsoft.com' UNION ALL

    SELECT...

Viewing 15 posts - 54,016 through 54,030 (of 59,068 total)