Msg 6522, Level 16 warning during execution of clr stored procedure
问题 I would like to create SQL Server CLR stored procedure for inserting some rows in a table in SQL Server 2012. Here is my c# code: using System; using System.Data; using System.Data.SqlClient; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; using System.Collections.Generic; public partial class StoredProcedures { [Microsoft.SqlServer.Server.SqlProcedure] public static void InsertingRows () { // Put your code here Random rnd = new Random(); List<int> listtelnumber = new List<int>