Well, it's starting to get hard for me to manage my websites and I am trying to clean up. One of my websites is using 8 Databases (one for every script) and I was wondering if I combind all those databases into one would it slow down my site? Any input would be great.
I would say it would not slow down your database. Normaly it is the amount of querys used per page and the numer of joins in each query that determin the speed.(and number of users using the site at the same time)
If traffic to your site in addition to the number of queries made to the database(s) is not overly high you will not see an affect on speed. One word of caution is to review the tables for each database to ensure there will not be duplicated tables for different databases which could cause issues in parsing the content for your site. Rick
Great advice guys, thank you very much, you clarified this issue for me 100% rep points to both of you.