exec sp_configure 'show advanced options', 1
RECONFIGURE;
exec sp_configure 'Ad Hoc Distributed Queries', 1
RECONFIGURE;
Output:
Configuration option 'show advanced options' changed from 1 to 1.
Run the RECONFIGURE statement to install.
Configuration option 'Ad Hoc Distributed Queries' changed from 1 to 1.
Run the RECONFIGURE statement to install.
Showing posts with label Configuration. Show all posts
Showing posts with label Configuration. Show all posts
Thursday, 22 August 2013
Configuring Ad Hoc Distributed Queries in SQL SEREVER
Configuring Database Mailing in SQL SERVER
Here we are going to see how to configure the database mailing, just execute the below code to configure.
Check Using below one:
select * from sys.configurations where name ='Database Mail XPs'
sp_configure N'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure N'Database Mail XPs', 1;
GO
RECONFIGURE;
GO
GO
RECONFIGURE;
GO
sp_configure N'Database Mail XPs', 1;
GO
RECONFIGURE;
GO
Check Using below one:
select * from sys.configurations where name ='Database Mail XPs'
Subscribe to:
Posts (Atom)