What is wrong with this code please?
The error is : "Line 1: Incorrect syntax near 'USP_StatusUnzipFile'."

Thanks


public void UnzipFile(string strFilename)
{
try
{
string strSQL = "USP_StatusUnzipFile";
string strConn = objects.clsConnect.ConnectionStringLocal;

SqlCommand oCmd;
SqlConnection oCon;

oCon = new SqlConnection(strConn);
oCmd = new SqlCommand(strSQL, oCon);

oCmd.Parameters.Add("@Filename", SqlDbType.VarChar, 1000);
oCmd.Parameters["@Filename"].Value = strFilename;

oCon.Open();
oCmd.ExecuteNonQuery();
oCon.Close();
}

catch (Exception ex)
{
throw ex;
}

}