Forum Replies Created

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

  • RE: Joins Vs Views

    Thanks for all the feedback. I would be putting appropriate indexes and if the view is reusable then would create the view.

    Thanks again.

  • RE: Joins Vs Views

    My tables in concern dont have indexes as it was causing delays because of frequent inserts and updates happening on that table.

    Question 1. If I do create a view, can...

  • RE: Joins Vs Views

    Interesting.

    Thanks again.

  • RE: Joins Vs Views

    Thanks,

    " ..there wouldn't be any difference in the actual execution plan" was what I was looking for.

    That means that the data or query plan is not cached for views...

  • RE: Truncate rollback

    use tempdb

    go

    create table a (b int)

    go

    insert into a (b) values (1), (2), (3)

    select * from a

    begin tran

    truncate table a

    select * from a

    rollback tran

    select * from a

    drop table a

    This would ideally...

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