Forum Replies Created

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

  • RE: Full Text Search

    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...

  • RE: Creating Views without Compile

    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...

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