Click here to Skip to main content
15,900,258 members

Comments by vinodh muthusamy (Top 41 by date)

vinodh muthusamy 21-Jun-17 0:51am View    
Error 5 The best overloaded method match for 'System.Web.HttpResponse.BinaryWrite(byte[])' has some invalid arguments

Error 6 Argument 1: cannot convert from 'System.Xml.XmlDocument' to 'byte[]'

These 2 errors iam getting

vinodh muthusamy 9-May-17 2:44am View    
DECLARE @dataval VARCHAR(200)
SELECT @dataval = ('First name','Address');

EXEC datatype_Details @Dataval;

It throws error as

Msg 102, Level 15, State 1, Line 2
Incorrect syntax near ','.
vinodh muthusamy 9-May-17 2:35am View    
how to check test script
vinodh muthusamy 9-May-17 2:22am View    
Here is my SP code

ALTER PROCEDURE [dbo].[datatype_Details]
(
@dataval VARCHAR
)
AS
BEGIN

select FId,DataTypeName from tbl_fieldname where DataTypeName in(@dataval)
END

vinodh muthusamy 5-May-17 7:08am View    
This query adds all value and execute the query