正如我在 SQL Server Profiler 中看到的,SQL Server Agent 在开始执行作业步骤时发出的第一条语句是
select c.name, c.description
from master.dbo.syscharsets c
where c.id = convert(tinyint, databasepropertyex ( db_name() , 'sqlcharset'))
set quoted_identifier off
在我的工作步骤中,我总是需要quoted_identifier
设置为 on。
我怎样才能改变这种行为?
服务器的默认连接设置设置为开。
select @@version
输出:
Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (Intel X86)
Sep 22 2011 00:28:06
Copyright (c) 1988-2008 Microsoft Corporation
Enterprise Edition on Windows NT 5.2 <X86> (Build 3790: Service Pack 2)