SSMS从我的存储过程中删除Pre-Begin注释
我正在运行SSMS 12.0.2000.8
如果我使用SSMS查询编辑器创建一个存储过程(如下面的存储过程),BEGIN
之前的注释在我执行/保存它时会被删除:
CREATE PROCEDURE myproc
/* Say goodbye to this comment */
@var1 int -- this comment will disappear too
AS
BEGIN
/* This comment is safe */
select 'hello' -- this too shall endure
END
一位同事正在运行相同版本的SSMS,没有此类问题。如果我使用sqlcmd.exe
执行他的一个脚本,那么注释也会被剥离。我假设一定有需要更改的全局设置,但我不知道它可能在哪里。
解决方案
在观察到其他一些奇怪的地方(即with execute as caller
被添加到我的脚本中)后,我搜索了一下,发现了答案:
delete Users[user]AppDataRoamingMicrosoftSQL Server Management Studio12.0sqlstudio.bin
警告:您将丢失当前已记忆的SQL Server/用户名/密码列表。
相关文章