Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
isqlを使用してストアドプロシージャを実行すると、次の情報が得られる場合があります。
(return status = 0)
その情報を無効にすることは可能ですか?
私はすでにSET NOCOUNT ONいくつかの部分を無効にするために使用していますが、これはまだ表示されています。
SET NOCOUNT ON
次のコードを使用できます。
set proc_return_status off
現在のデータベース内のすべての SP を無効にすることに注意してください。次のことを行う必要があります。
set proc_return_status on
その後。