hi,
right now moved to a new MSSQL test server, but when I do this:
IF Object_id('tempdb..#datasource') IS NOT NULL
DROP TABLE #datasource;
CREATE TABLE #datasource
(
booking_key [dbo].[booking_key]
);
Open in new window
it said :
Msg 2715, Level 16, State 7, Line 5
Column, parameter, or variable #1: Cannot find data type dbo.booking_key.
that type dbo.booking_key really exists.
any reason for that?