Viewing 2 posts - 1 through 3 (of 3 total)
The execution plan is same for all searches.
I created a table with one row.
create table dbo.Addr
(
AddressID int identity primary key,
AddressLine varchar(100)
)
insert into dbo.Addr values ('123 W Main St APT 666')
Fulltext...
May 26, 2016 at 8:23 am
#1881571
thank you for your reply jeff. underlying tables will be created later. Actually underlying tables is not my major problem. I can create all tables before executing views script. At...
February 13, 2010 at 10:12 pm
#1118525