Forum Replies Created

Viewing 15 posts - 961 through 975 (of 2,647 total)

  • RE: Table-based Functions vs. Views

    Putts (5/9/2012)


    SQLKnowItAll (5/9/2012)


    We want to create a virtualization within our database to reflect the makeup of a class in code ... what is better for this? A View or...

  • RE: Table-based Functions vs. Views

    Putts (5/9/2012)


    SQLKnowItAll (5/9/2012)


    A stored procedure returns the columns needed for the app, independent of the table structure. So, if you have to add a column to a class you already...

  • RE: Table-based Functions vs. Views

    We want to create a virtualization within our database to reflect the makeup of a class in code ... what is better for this? A View or a Table-valued...

  • RE: Table-based Functions vs. Views

    GilaMonster (5/9/2012)


    SQLKnowItAll (5/9/2012)


    Maybe you missed the post in which Gail said that using a table-valued UDF causes a table scan every time.

    I have never said such a thing because...

  • RE: Table-based Functions vs. Views

    Putts (5/9/2012)


    SQLKnowItAll (5/9/2012)


    I think the "real" problem here, that you are avoiding, is that the database schema keeps changing. If it was designed properly to begin with, you would...

  • RE: Table-based Functions vs. Views

    Putts (5/9/2012)


    You are just making statements now with no backing.

    What is the point of a table-valued UDF if not to return a resultset? Is that not the same...

  • RE: Table-based Functions vs. Views

    I think the "real" problem here, that you are avoiding, is that the database schema keeps changing. If it was designed properly to begin with, you would only have...

  • RE: Table-based Functions vs. Views

    Putts (5/9/2012)


    GilaMonster (5/9/2012)


    Putts (5/9/2012)


    Any change to the table then forces you to refresh all your SPs.

    Not at all. The only time that a procedure will need refreshing if...

  • RE: Table-based Functions vs. Views

    There's really no justification for hitting the table directly.

    That makes no sense. There's really no justification for hitting the table indirectly.

    Any change to the table then forces you to refresh...

  • RE: Table-based Functions vs. Views

    No matter if you reference all the fields explicitly from ViewX in your SP or just simply do a SELECT * FROM ViewX, you will be forced to refresh those...

  • RE: How to Move live DB from One server to another Server without shutdown

    You could set up replication from server a to server b, move application to point to server b, verify no more traffic to server a, take server a offline. That's...

  • RE: SSMS getting confused

    Pam Brisjar (4/26/2012)


    SQLKnowItAll (4/26/2012)


    Pam Brisjar (4/26/2012)


    I have a side by side install (2005 and 2008) as noted above. But yeah, I suspect it felt it was "helping" me as I...

  • RE: SSMS getting confused

    Pam Brisjar (4/26/2012)


    I have a side by side install (2005 and 2008) as noted above. But yeah, I suspect it felt it was "helping" me as I had 2005 installed.

    Just...

  • RE: SSMS getting confused

    Pam Brisjar (4/26/2012)


    Yup, that did it.

    Now why in the world would they do something like that...

    Oy.

    Maybe you upgraded instead of a fresh install?Just shooting in the dark...

Viewing 15 posts - 961 through 975 (of 2,647 total)