TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
jayakrishnan Morayur
NA
193
257.7k
Incorrect syntax near '+'.
Aug 30 2011 2:58 AM
GO
/****** Object: StoredProcedure [dbo].[Add_Result] Script Date: 08/30/2011 12:24:44 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[Update registerno]
(
@filename nvarchar(50),
@sheetname nvarchar(50)
)
AS
BEGIN
UPDATE StudentRegistration SET adno = T.[adno]
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0;Database=' + @filename + ';HDR=YES', 'SELECT * FROM [Sheet1$]')T
WHERE StudentRegistration.regno = T.[regno]
END
The following error occur in above sql query
Msg 102, Level 15, State 1, Procedure Update registerno, Line 12
Incorrect syntax near '+'.
Reply
Answers (
1
)
how to show 10 days before day to currentdate?
How can split a string in sql using comma delimiter