I Know that CLR stored procedures has many advantages over extended stored procedures like type and exception safety and greater control from SQL server over them, but they have at least one disadvantage: lower performance, specially in case that they
should called many time for example once for a row and your table has more than 100,000 row. In this case cost of transition from MSSQL native code to CLR managed code is really high. So I want to know why Microsoft mark them as deprecated?
↧