I got 3 tables on my sql database
PL01_PROJECT
DE06_PROJECT
LT01_PROJECT
All tables have the same columns header and number
I want to create a view where is appending all table 1by 1 so to have a vie with all data from the tables I tried the following code
I searched for a solution here but looks like do not find the table but table name are exactly as I wrote, I USE query by MICROSOFT SQL SERVER MANAGEMENT STUDIO, how possible do not find table ?
CREATE VIEW TEST
AS
SELECT * FROM dbo.PL01_PROJECT
UNION ALL
SELECT * FROM dbo.LT01_PROJECT
UNION ALL
SELECT * FROM dbo.DE06_PROJECT
GO
Msg 208, Level 16, State 1, Procedure TEST, Line 4 [Batch Start Line 0] Invalid object name 'dbo.PL01_PROJECT'.