Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: No State Based Deployments

    To handle instances of data migration due to column renames, have you considered a mapping feature in SQL Compare? I believe there is something similar in SQL Data Compare...

  • RE: Software Patents

    Electronic media in general is harmed by existing patent/copyright laws - even going back to 14+14 for this area doesn't make sense given the fast pace of innovation & the...

  • RE: Speeding up database access - part 4 Fixing expensive queries

    When you're trying to update and select information at the same time, wouldn't it be simpler to use OUTPUT:

    UPDATE dbo.Book

    SET LastAccess = GETDATE()

    OUTPUT INSERTED.Title, INSERTED.Author

    WHERE BookId = @BookId

    (I believe you...

Viewing 3 posts - 1 through 3 (of 3 total)