Forum Replies Created

Viewing 15 posts - 106 through 120 (of 152 total)

  • RE: Row Oriented Security Using Triggers

    Hi,

    Thanks for sharing this idea.

    I'm confused about one point, and have a design question on another.

    As for the confusion, it appears that you've disabled the security feature if someone inserts...

  • RE: Answering to the Business

    Jeff Moden (4/5/2010)


    What if we as developers or database people had a way to present different options to business people in more clear cut terms.

    Interesting idea but reality gets in...

  • RE: Answering to the Business

    I NEVER communicate IT options to management in IT terminology.

    I always translate it into terms of money, time, business risk and business benefits.

    If I do, I generally get very good...

  • RE: Regd SQL Server edition info

    Can't help you with finding that info in the registry or via wmi.

    But it's easily available with the following query. Pick the value that best fits your need:

    select @@Version...

  • RE: Foreign key constraints...WHY??

    PaulB-TheOneAndOnly (4/4/2010)


    Actually I was more concerned about "Sometimes the business requirement is to BE SEEN to have an application on a topic and pretending it works correctly "... scary :crying:

    True...

  • RE: Foreign key constraints...WHY??

    PaulB-TheOneAndOnly (4/4/2010)


    david_wendelken (4/4/2010)


    I start with the premise that the data is supposed to be valid. That's, on occasion, NOT a business requirement at all. (Sometimes the business requirement...

  • RE: Foreign key constraints...WHY??

    Paul White NZ (4/4/2010)


    One part of the argument revolves around where integrity enforcement conceptually belongs.

    ...

    In the real world, we have to compromise, and there is a whole spectrum...

  • RE: Foreign key constraints...WHY??

    Steve Jones - Editor (4/3/2010)


    I'd argue that a large CRM/ERP application without FKs is just poorly designed. There are all sorts of support/administrative contracts in place to prevent you from...

  • RE: Passing Table Value Parameters to a stored procedure

    Paul White NZ (4/1/2010)


    The whole point of TVPs is to allow you to pass a bunch of data at once, to minimize round-trips and improve efficiency.

    I think that's why the...

  • RE: Stopping Duplicates with INSTEAD OF INSERT Problem

    I think the problem was caused by a two-step algorithm with interleaved processes.

    Process stream A:

    a1. Check for duplicate

    a2. Insert new record.

    Process stream B:

    b1. Check for duplicate.

    b2. Insert new record.

    Now, let's...

  • RE: Foreign key constraints...WHY??

    Plus primary and unique key constraints, check constraints, non-unique indexes, default values, column and table definitions, and maybe even triggers. Plus database roles and privileges, clearly defined up front.

  • RE: Foreign key constraints...WHY??

    Yes, you definitely should.

    But...

    I'm not saying this to be mean, so please don't take it this way.

    If you're asking "why should I do this?", you probably don't have the skills...

  • RE: Linked Server Connectivity Test

    Some linked servers are set up to only work for a given set of windows authentications.

    So, the job needs to be set up to run as one of those users.

    There...

  • RE: Avoiding Sort task in Execution Plan

    You're returning "navigation data" with 9 million rows in it?

    Is that for a menu of choices?

    Because if I understood that correctly, the solution is probably "don't do that". 🙂

    I'm guessing...

  • RE: Interview questions on SQL Server 2005.

    CirquedeSQLeil (3/29/2010)


    Just keep in mind that a good interviewer will be able to see that you have memorized Q and A for the interview.

    That's ok. The odds are 99...

Viewing 15 posts - 106 through 120 (of 152 total)