Creates a table called TEST in the TWO database on the DEMO linked server
EXEC
(
'
USE [TWO];
CREATE TABLE [dbo].[TEST](
[RowId] [int] IDENTITY(1,1) NOT NULL
) ON [PRIMARY];
)
AT
[DEMO];