Answer the question
In order to leave comments, you need to log in
How to pass table datatype to GO?
Well, actually the whole point of the question is in the title. The following type was created in sqlserver:
DECLARE @event_type CHAR(4) = 'EVNT',
@param_name CHAR(4) = 'PRNM',
@param_value VARCHAR(100) = 'param value'
DECLARE @evt_params dbo.EventParams
INSERT INTO @evt_params
(
event_type,
param_name,
param_value
)
SELECT @event_type,
@param_name,
@param_value
How to pass it to the storage?=)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question