Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL 7 and BaaN

Status
Not open for further replies.

jeffieboy

Technical User
Jun 5, 2001
9
0
0
US
We have just migrated from Informix DB to SQL 7 and are having performance issues. Speed of processes are cut by 75%.
Hardware = 4 way pentium pro 200 proc.,1.3 gig ram, raid 1 with 54 gig visibility. Win NT 4.0 SP 6a. Using BaaN 4C3, also on a similar box. Any suggestions would be a help. Thanks.
 
Generally, performance problems are due to poor application design and/or poor table indexing. As you can probably not modify the Baan design, you should focus on Indexing.

Check for indexes on the tables. You should have one or more indexes defined on each table. The indexes should be defined on columns referenced in query Where criteria. You can use SQL Profiler to help determine which columns are referenced.

For more information on indexing check the following sources.

Tips on Optimizing SQL Server Indexes

Tips on Optimizing SQL Server Clustered Indexes

Tips on Optimizing Non-Clustered SQL Server Indexes

SQL Server Index Tuning Wizard Tips

Getting The Best From The SQL Server Index Tuning Wizard
Terry
------------------------------------
Blessed is the man who, having nothing to say, abstains from giving us worthy evidence of the fact. -George Eliot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top