|
Hehe, sorry about the lack of detail, I was in a rush yesterday and didn't have time to finish. anyways...
What kind of data? normal everyday text
Is the database normalized? meh? lol...
Are you using indexes? No
Are you searching along the indexed fields? no
Indexes add overhead but speed up searches when the search is on the indexed field. If you have only one table and 8gb of data, you probably (not guaranteed) have a design problem.
What platform are you on? SWL Server 2000
Are your searches pulling back the whole database? no
What language are you using to access the db? SQL
OK, here's how it works, I have nearly 1000 unique tables, I'm currently pulling data using SQL using Inner Joins; linking around 5 different tables at once. So I'm not pulling the whole database, but it still has to search through a hefty amount, for I am using the largest tables out of the database... seems to take a long time and was just wondering if I can speed it up. And this may sound funny, but I haven't really used indexing before, is this something I should look into? Thanks again....
|