Click here to Skip to main content
15,878,970 members

Comments by Jitendra Ku. Sahoo (Top 10 by date)

Jitendra Ku. Sahoo 24-Apr-15 2:21am View    
You need to use proper encoding for this. Also use proper datatype like NVARCHAR in-place of VARCHAR datatype to store data.
Jitendra Ku. Sahoo 10-Mar-15 4:19am View    
Have a look here, column no does not match
WHILE @@Fetch_status = 0
BEGIN
INSERT INTO #Temptable
VALUES (
@Coursename
,@code
,@certificate
,@issueauth
,@issuedate
)

FETCH NEXT
FROM crselg
INTO @code
,@certificate
,@issueauth
,@issuedate
END
Jitendra Ku. Sahoo 16-Jan-15 0:32am View    
Can you please provide details code you are using?
Jitendra Ku. Sahoo 5-Jan-15 3:51am View    
You can have a look here http://msdn.microsoft.com/en-IN/library/ms181765.aspx
Jitendra Ku. Sahoo 28-Oct-14 8:08am View    
Can you give more details or paste your code here ?