Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
205 views
in Technique[技术] by (71.8m points)

Error Catch fail when comparing Views with Except statement

We are in the process of switching servers (Sql Server) and we would like to compare our Views between the servers for differences. Comparing the Views via Except works fine however I'm having difficulty catching the error with the below code. I tested with a simple 1/0 to make sure an error could be captured: I'm wondering if I'm missing something:

    Begin Try
       Select * From [Server1].[database].[dbo].[View_Name]
    Except
       Select * From [Server2].[database].[dbo].[View_Name]
    End Try

    Begin Catch
       Select
          Error_Message() as Error
          Error_Line() as ErrorLine
    End Catch
question from:https://stackoverflow.com/questions/65905621/error-catch-fail-when-comparing-views-with-except-statement

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...