You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set showplan on
set noexec on
go
select xxxx from yyyy where zzzz
go
set noexec off
set showplan off
go
==========================>>
cmd.CommandText = "set showplan on set noexec on"
cmd.ExecuteNonQuery();
cmd.CommandText = "select xxxx from yyyy where zzzz"
da.fill(SomeDataset); //-- SomeDataset was filled nothing here.
cmd.CommandText = "set showplan off set noexec off"
cmd.ExecuteNonQuery();
The text was updated successfully, but these errors were encountered:
set showplan on
set noexec on
go
select xxxx from yyyy where zzzz
go
set noexec off
set showplan off
go
==========================>>
cmd.CommandText = "set showplan on set noexec on"
cmd.ExecuteNonQuery();
cmd.CommandText = "select xxxx from yyyy where zzzz"
da.fill(SomeDataset); //-- SomeDataset was filled nothing here.
cmd.CommandText = "set showplan off set noexec off"
cmd.ExecuteNonQuery();
The text was updated successfully, but these errors were encountered: