內部使用我SQL服務器配置語句不能在用戶事務
CONFIG語句不能在用戶事務
中運行以下步驟2時使用。任何決議?謝謝。
步驟#1:
CREATE PROC [dbo].[nz_test1]
as
EXEC sp_configure 'show advanced option', 1
RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'xp_cmdshell', 1
EXEC sp_configure 'ad hoc distributed queries', 1
RECONFIGURE WITH OVERRIDE
select 1
步驟#2:
create proc [dbo].[test_nz_tb3]
as
create table #t (a varchar(2))
insert into #t
exec nz_test1
歡迎來到Stack Overflow!請注意,標籤獨立。也就是說,用'sql'和'server'標記你的問題並不意味着你在談論MS SQL Server,它具有'sql-server'標記。 – Charles