Forum Replies Created

Viewing 15 posts - 21,991 through 22,005 (of 22,189 total)

  • RE: searc engine query

    If you're going for cheap, then you just need to set up full text indexing that comes with SQL Server 2005. Otherwise, I found this information on the Google site:

  • RE: Those cursed cursors

    Are you kidding? Set logic is bloody difficult. I have a hard time wrapping my brain around it almost daily. I just know that I have to take the approach...

  • RE: searc engine query

    Just to start with, no:

    SELECT * FROM ... LIKE 'Asp.net%'

    will only find data that is starts with Asp.net. If you want to search in the middle of a string you...

  • RE: Those cursed cursors

    It's not so much the database that's set oriented, although that's a big part of the issue. It's that TSQL is set oriented. Especially 2005 with common table expressions &...

  • RE: Constraint Multiple Columns: How To

    I agree with Ms. Shaw. Who wouldn't. You may also want to consider using a unique constraint:

    ALTER TABLE [x]

    ADD CONSTRAINT [y]

    UNIQUE NONCLUSTERED ([emailaddress],[password]) ON [PRIMARY]

    Then you get the index suggested...

  • RE: Programmatically generate script for an SQl object

    Now that's sweet. I had not known of this one prior to today. Thanks for posting it.

  • RE: LOOPS in stored procedure

    Nice choice. Beats a cursor in most situations.

  • RE: Programmatically generate script for an SQl object

    Crud I hate that. My first response went into the ether and my second got posted so I look like a schmuck. Sorry about that. What I said was:

    Generating objects...

  • RE: Programmatically generate script for an SQl object

    Oops, should have added, SMO means SQL Management Objects. It's in the BOL, including decent (if not good) references & samples.

  • RE: Programmatically generate script for an SQl object

    Based on what you're suggesting, you might want to look at doing a little SMO programming. You can quite simply generate a CREATE script for various objects from there.

  • RE: SQL server Error log rotation

    We usually run this once a week on production servers:

    sp_cycle_errorlog

    We generally only keep the four weeks around. If you want to archive them after you cycle them,...

  • RE: LOOPS in stored procedure

    In general, you don't want to. TSQL is set based and works best when you keep that in mind.

    For example, where I work, we will usually write a pair...

  • RE: Design problem-Refactoring field

    Thinking about it, that's a somewhat inadequate answer I gave.

    Referring to Ambler's book on refactoring, of course you want to first add the new columns. Then you have a decision...

  • RE: What''s a Good Manager

    I'm not sure I agree on this one. My manager came out of sales & has few technical skills but he's doing a pretty good job managing the team. His...

  • RE: Design problem-Refactoring field

    If I were going to refactor this, I'd leave the existing column in place as a calculated column and then split the actual data storage into two other columns. My...

Viewing 15 posts - 21,991 through 22,005 (of 22,189 total)