• Why not just use a the 3-part naming convention when creating your view?

    USE Tempdb;
    GO
    CREATE VIEW MyView
    AS
    SELECT CustomerID
    FROM Galactic.dbo.Customer;

    I'm creating a view inside one database (tempdb) that gets data from another database (Galactic).