SQL Server Express performance issue

Posted by Developer IT on Stack Overflow See other posts from Stack Overflow or by Developer IT
Published on 2010-05-07T04:10:46Z Indexed on 2010/05/07 4:18 UTC
Read the original article Hit count: 269

Hi folks !

I know my questions will sound silly and probably nobody will have perfect answer but since I am in a complete dead-end with the situation it will make me feel better to post it here.

So...

I have a SQL Server Express database that's 500 Mb. It contains 5 tables and maybe 30 stored procedure. This database is use to store articles and is use for the Developer It web site. Normally the web pages load quickly, let's say 2 ou 3 sec. BUT, sqlserver process uses 100% of the processor for those 2 or 3 sec.

I try to find which stored procedure was the problem and I could not find one. It seems like every read into the table dans contains the articles (there are about 155,000 of them and 20 or so gets added every 15 minutes).

I added few index but without luck...

It is because the table is full text indexed ? Should I have order with the primary key instead of date ? I never had any problems with ordering by dates.... Should I use dynamic SQL ? Should I add the primary key into the url of the articles ? Should I use mutiple indexes for seperate columns or one big index ?

I you want more details or code bits, just ask for it.

Basicly, every little hint is much apreciated.

Thanks.

© Stack Overflow or respective owner

Related posts about sql

Related posts about sql-server