I have a database that uses the text datatype as on of the
fields. I'm working on a content management system and I
would like to optimize the table so that when a user
request a page it will show in the browser quickly.

Heres my table:

pageID primarykey autonumber,
pageTitle varchar(100),
pageBody text

Using stored procedures to get the data out.

Thanks.

SF