Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

INSERT usando LIST no procedimento armazenado


Se você estiver usando o SQL Server 2008 e superior, poderá usar a solução abaixo. Declare o tipo de tabela como:
CREATE TYPE FeatureServerType AS TABLE 
(
   [Features] nvarchar(50)
   ,[TotalLicenses] int
   ,[LicensesUsed] int
   ,[Server] nvarchar(50) 
);

Use-o como:
CREATE PROCEDURE [RSLinxMonitoring].[InsertFeatures] 
   @TabletypeFeatures FeatureServerType READONLY
AS
   SET NOCOUNT ON;

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