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
258.1k
Error on 'Ad Hoc Distributed Queries'
Sep 7 2011 1:54 AM
i have a query bellow GO
/****** Object: StoredProcedure [dbo].[AdHoc] Script Date: 09/07/2011 11:22:55 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[AdHoc]
AS
BEGIN
EXEC sp_configure 'show advanced options', '1'
RECONFIGURE
EXEC sp_configure 'Ad Hoc Distributed Queries', '1'
RECONFIGURE;
END
But the following error occur
User does not have permission to perform this action.
You do not have permission to run the RECONFIGURE statement.
The configuration option 'Ad Hoc Distributed Queries' does not exist, or it may be an advanced option.
You do not have permission to run the RECONFIGURE statement.
Reply
Answers (
1
)
Split multiple columns into single column by delimiter?
How to split particular column values into rows by using delimiter using sqlserver