Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
EXECUTE COMMAND PROBLEM
Message
From
15/01/2001 18:05:59
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
EXECUTE COMMAND PROBLEM
Miscellaneous
Thread ID:
00463985
Message ID:
00463985
Views:
56
I wrote the following code and cannot get it to run:

DECLARE @RequestID UNIQUEIDENTIFIER,
@TempTableName VARCHAR(36),
@Cmd NVARCHAR(200)

SET @RequestID = NEWID()
SET @CMD = N'SELECT [TypeIDField], [DataValue] FROM RequestProperty_tbl re LEFT OUTER JOIN ' + @TempTableName + ' AS t ' + 'ON t.[ID] = re.[TypeIDField] WHERE re.[RequestID] = ' + @RequestID

EXECUTE SP_EXECUTESQL @CMD

--Server: Msg 403, Level 16, State 1, Line 7
--Invalid operator for data type. Operator equals add, type equals nvarchar.


How can I format it with the @RequestID UniqueIdentifier to run correctly?
Next
Reply
Map
View

Click here to load this message in the networking platform