프로 시저에 제공되지 않은 매개 변수가 필요합니다. SQL Server에서 저장 프로 시저에 액세스 할 때 오류가 발생합니다. Server Error in '/' Application. Procedure or function 'ColumnSeek' expects parameter '@template', which was not supplied. 이것은 매개 변수를 (System.data.SqlClient)제공하더라도 .net의 sql 데이터 연결을 통해 매개 변수가있는 저장 프로 시저를 호출 할 때 발생 합니다. 다음은 내 코드입니다. SqlConnection sqlConn = new SqlConnection(connPath); sqlConn.Open(); //METADATA RETRIEVAL strin..