Viewing 12 posts - 1 through 12 (of 12 total)
I found the answer my self. The value 262144 represents a plan that has "SET ROWCOUNT" > 0.
March 1, 2014 at 12:27 pm
NP demands an "authenticated network connection". You can try to see if you can connect with explorer to the SQL server as you say that the app's windows account has...
November 30, 2004 at 1:15 pm
I also want to add following to above:
Change the primary key clustered index to non-clustered and create a new one on START_DT.
I interpreted this as create a new primary key...
November 22, 2003 at 1:30 am
Just a follow-up to setopts & 2 = 2
USE master
EXEC sp_configure 'show advanced option', '1'
EXEC sp_configure 'max degree of parallelism','1'
reconfigure
This will lead to a setopts column of 0. IE setopts...
June 6, 2003 at 11:28 pm
The problem is just that Microsoft is reluctant to publish this.
We have to wait until they understands the need for official documentation.
Or that we get an official explanation of this...
June 6, 2003 at 12:02 pm
This Post is lengthy (it includes a long script)
We have a lot of different business logic in our triggers.
I first need to thank you for trying to find a solution....
June 5, 2003 at 3:03 pm
Thank you for the suggestions.
We have gone through the syscacheobjects table. Note that the setopts values are not completely documented for SQL 2000.
And this problem arises because a trigger has...
June 4, 2003 at 11:50 am
To minimize the recompile time your suggestion would perhaps work. We already have code that loops for executing SP's and some other code.
If Microsoft does not understand the performance...
June 2, 2003 at 8:53 am
No, the problem is not the code that makes the update. The trigger objects will recompile regardless of what object is doing the update.
From our point of view:
SQL server have...
May 27, 2003 at 12:25 pm
A temporarily solution could following code change be:
select @cnt = count(*) from #a, fh where
...
if @cnt between 1 and 4
begin
...
May 18, 2003 at 11:30 am
The problem that we are facing is an unnecessary recompile of up to 5 seconds in certain situations. This is mostly due to the fact that we have most of...
May 16, 2003 at 11:10 am
Example script:
set nocount on
go
if object_id('cache_test') is not null
drop table cache_test
go
create table cache_test
(
id int not null,
descr varchar(30) not null,
rowcreateddt datetime not null default getdate(),
rowcreatedby varchar(30) not null default
right(system_user,30),
testcolumn varchar(30) null,
primary key...
May 15, 2003 at 1:29 pm
Viewing 12 posts - 1 through 12 (of 12 total)