ODBC Source from 2 Database
Posted: Mon Oct 26, 2009 10:07 am
Is it possible to use databse table data for dimension creation or loading in TM1 TI when each table comes from 2 different databases but resides on 1 actual Database hardware. For example if I'm using MS SQL 2005 AdventureWorks & AdventureWorkDW sample database? If not...how do you accomodate such instances?
Code: Select all
SELECT
AdventureWorks.HumanResources.Employee.EmployeeID,
AdventureWorksDW.dbo.DimEmployee.FirstName,
AdventureWorksDW.dbo.DimEmployee.LastName,
AdventureWorks.HumanResources.Employee.Title,
AdventureWorks.HumanResources.Employee.MaritalStatus,
AdventureWorks.HumanResources.Employee.Gender,
AdventureWorksDW.dbo.DimEmployee.DepartmentName
FROM
AdventureWorksDW.dbo.DimEmployee,
AdventureWorks.humanresources.Employee
WHERE AdventureWorksDW.dbo.DimEmployee.EmployeeKey = AdventureWorks.humanresources.Employee.EmployeeID