Viewing 5 posts - 1 through 5 (of 5 total)
Thanks for all the feedback. I would be putting appropriate indexes and if the view is reusable then would create the view.
Thanks again.
May 9, 2010 at 3:05 pm
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...
May 6, 2010 at 10:34 pm
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...
May 6, 2010 at 9:55 pm
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...
April 21, 2010 at 9:44 pm
Viewing 5 posts - 1 through 5 (of 5 total)