프로시저에서 제공되지 않은 매개 변수를 예상합니다. SQL Server에서 저장 프로시저에 액세스할 때 오류가 발생함 Server Error in '/' Application. Procedure or function 'ColumnSeek' expects parameter '@template', which was not supplied. 를 .net의통해 했을 때 합니다.(System.data.SqlClient)는 이렇습니다.여기 제 코드가 있습니다. SqlConnection sqlConn = new SqlConnection(connPath); sqlConn.Open(); //METADATA RETRIEVAL string sqlCommString = "QCApp.dbo.ColumnSeek"; SqlComm..