Open links in new tab
  1. How to use sp_configure in another Stored Procedure?

    Oct 21, 2010 · I am trying to use Sp_configure Proc in another stored procedure, but getting errors. SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE Test01 AS …

  2. sql - How to allow users to sp_configure to execute fileexist and ...

    Apr 3, 2014 · I suggest that you create a stored procedure with sp_configure to allow xp_cmdshell in it and use even parameters to pass to the sp_configure procedure, create a procedure with execute as …

  3. sql server - What does 'sp_configure allow updates' do? - Database ...

    Mar 7, 2017 · sql-server sql-server-2014 backup maintenance-plans sp-configure See similar questions with these tags.

  4. Access permission sp_configure and reconfigure statement?

    Jul 23, 2020 · From the permissions hierarchy poster: The execution of sp_configure and RECONFIGURE is granted by the ALTER SETTINGS permission. And from the docs: The sysadmin …

  5. Enable 'xp_cmdshell' SQL Server - Stack Overflow

    A system administrator can enable the use of 'xp_cmdshell' by using sp_configure. For more information about enabling 'xp_cmdshell', see "Surface Area Configuration" in SQL Server Books Online.

  6. Are harmless sp_configure commands always safe to run?

    Jun 20, 2025 · Suppose that I wish to run the following /* Check for any pending configurations, just in case. */ SELECT * FROM sys.configurations WHERE value <> value_in_use; GO EXEC …

  7. Why is Azure Data Studio telling me to use sp_configure if Azure SQL ...

    Dec 1, 2023 · Line 5 The sp_configure value 'contained database authentication' must be set to 1 in order to alter a contained database. You may need to use RECONFIGURE to set the

  8. c# - SQL Server blocked access to procedure 'sys.sp_OACreate' of ...

    Jan 21, 2015 · SQL Server blocked access to procedure sys.sp_OACreate of component 'Ole Automation Procedures' because this component is turned off as part of the security configuration for …

  9. AzureSQL- Could not find stored procedure 'sp_configure' while ...

    Dec 21, 2018 · AzureSQL- Could not find stored procedure 'sp_configure' while installing Sitecore9.1 Asked 7 years ago Modified 7 years ago Viewed 2k times

  10. sql - Is there a more concise way to get value from EXEC sp_configure ...

    Jan 30, 2020 · This is working, but I feel like declaring a variable table just to hold the result of sp_configure to save a single value from it is overkill. Is there a more concise way to do this? All I …