Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

INSERT utilizzando LIST in Stored Procedure

Se stai utilizzando SQL Server 2008 e versioni successive, puoi utilizzare la soluzione seguente. Dichiara il tipo di tabella come:

CREATE TYPE FeatureServerType AS TABLE 
(
   [Features] nvarchar(50)
   ,[TotalLicenses] int
   ,[LicensesUsed] int
   ,[Server] nvarchar(50) 
);

Usalo come :

CREATE PROCEDURE [RSLinxMonitoring].[InsertFeatures] 
   @TabletypeFeatures FeatureServerType READONLY
AS
   SET NOCOUNT ON;

   INSERT INTO [RSLinxMonitoring].[FeatureServer]
        ([Features]
           ,[TotalLicenses]
           ,[LicensesUsed]
        ,[Server])
   SELECT * FROM @TabletypeFeatures