Forum Replies Created

Viewing 15 posts - 46 through 60 (of 532 total)

  • RE: locking in sql server

    GilaMonster (2/16/2012)


    SQLKnowItAll (2/16/2012)


    If you don't know the answer to this, you probably should not be interviewing for the job.

    So tell me then, how do you (not the database engine)...

  • RE: COUNT No of occurrances in a text field

    If you have a need to improve the performance and you are not overly restricted in your environment, this would be a great place to use CLR. The longer...

  • RE: sp_executesql()

    I had a situation a few months ago in which a search proc with a bunch of messy conditional logic was replaced with fully parameterized dynamic sql. The proc...

  • RE: How many indexes is too many ?

    Never use dynamic sql like that. Use sp_executesql and correctly parameterize all variable input. Right now, the way you have it, you have an open invitation to perform...

  • RE: Mulitple Saarch Criteria using ONE Column

    Two separate queries with a UNION ALL would be another option.

    In doing this assignment, take the opportunity to learn what's going on instead of just picking the first 'solution' that...

  • RE: Need a Help

    update dbo.messages

    set ContentMessage = replace(ContentMessage, 'this is debt collecor.', '');

    go

  • RE: CONTAINS showing results when shouldn't

    Very good question.

    Something important to understand about SQL Server's full text indexing is that not every word gets indexed. There are words that are intentionally filtered out because they...

  • RE: Urgent help with T-SQL - good test!

    Not sure that I'm missing something, but I'm not seeing your solution to the problem that you say you don't like. I know I don't really want to code...

  • RE: My XML skills are poor when querying SSRS

    Would be helpful to know what the value for content is for a record that is causing the error.

  • RE: Conditional Trigger Question

    While Celko may be rude and he comes across as though he's never left the ivory tower to do real work, there is a small point in what he says....

  • RE: Database normalization question

    Oooh, looks like a homework assignment!

    Normally I don't help with those, but since you put forth an effort with what you think it might be, I'll at least give you...

  • RE: can any one explain me about content management system in sql server 2008 r2

    Especially for really broad questions, the website Google.com can be a handy place to start.

    A content management system is a potentially extremely complex application that would store its data in...

  • RE: Dynamic SQL Error

    Sean Lange (1/18/2012)


    I second the opinion of not doing dynamic sql like this. Your whole query is only a single simple select statement. Even if this is "internal" only you...

  • RE: Dynamic SQL Error

    I cannot overstate how ill advised your dynamic sql strategy is. You are asking someone to hijack your system with sql injection and you are ruining any chance for...

  • RE: Working with Dialling Systems

    I use to do a bit with an Avaya dialer system that sat on Oracle but my interaction was limited to simple queries. Those are $1M systems and the...

Viewing 15 posts - 46 through 60 (of 532 total)