I have some question regarding SQL Server Database.
I have a old database in working state in which the actual data of Employee exists. I am creating a new database for my application. For this new application I need to depend on data from old database. I am only storing the Employee Id in my new database and fetching the names and other details for display as and when required. I am using join between two databases to fetch employee details Example
JOIN [ASES].[dbo].[USERS] AS USERS
ON CRMDR.Requester COLLATE SQL_Latin1_General_CP1_CI_AS = USERS.RID COLLATE SQL_Latin1_General_CP1_CI_AS
I am trying to find out the performance difference. This join from two difference database is better or if I copy the Employee details in my new database and then my query will have only single database join? Which one is more better as per performance?