Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server 2008 - How fast are table joins across databases (same server) vs. tables in the same database?

We're customizing a CMS that has a few hundred tables in it. We are considering moving our custom tables to a separate database on the same server.

Should we expect much of a slow down in SQL Server? There will be many multi-join stored procedures joining data across the CMS database and our custom database.

like image 475
Brian Webster Avatar asked Feb 26 '23 06:02

Brian Webster


1 Answers

should not make an impact......however you can also use a schema instead and place all your tables under that schema in the same database. This way all your stuff will be logically grouped together

like image 99
SQLMenace Avatar answered Apr 08 '23 09:04

SQLMenace