Hi below is the structure of our database
CREATE TABLE [dbo].[dbtable] (
[DBkey] [int] IDENTITY (1, 1) NOT NULL ,
[nvarchar] (50) ,
[Name] [nvarchar] (100) ,
[Keywords] [nvarchar] (255) ,
[About] [nvarchar] (255) ,
[Url] [nvarchar] (100) ,
[Region] [int] NULL ,
[Done] [bit] NULL
) ON [PRIMARY]
GO
There are currently 2-3 million records within the database growing at a rate of 20 thousand + records per week.
Issues
Currently it runs on SQL SERVER 7 on a shared server with the search only working for a one keyword search.
We just use an SQL statement similar to something like this --- SELECT * FROM table WHERE LIKE ...
We are looking for help to optimize the search.
Would moving to 2000 and using the full text search properties be the best way to go?
hope you can help
Michael.
CREATE TABLE [dbo].[dbtable] (
[DBkey] [int] IDENTITY (1, 1) NOT NULL ,
[nvarchar] (50) ,
[Name] [nvarchar] (100) ,
[Keywords] [nvarchar] (255) ,
[About] [nvarchar] (255) ,
[Url] [nvarchar] (100) ,
[Region] [int] NULL ,
[Done] [bit] NULL
) ON [PRIMARY]
GO
There are currently 2-3 million records within the database growing at a rate of 20 thousand + records per week.
Issues
Currently it runs on SQL SERVER 7 on a shared server with the search only working for a one keyword search.
We just use an SQL statement similar to something like this --- SELECT * FROM table WHERE LIKE ...
We are looking for help to optimize the search.
Would moving to 2000 and using the full text search properties be the best way to go?
hope you can help
Michael.