Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Hanging & missing data in result set
Message
From
04/04/2001 07:01:51
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
Stored procedures, Triggers, UDFs
Title:
Hanging & missing data in result set
Miscellaneous
Thread ID:
00491751
Message ID:
00491751
Views:
41
Hi everyone,

We encountered two anomaly's in SQL 6.5 SP4.
1) Running an SP which takes
2) Running an SP that misses some data in the result set.

Example 1)

Example 2)

create procedure xxx()with recompile
as
begin
if exists (select * from tempdb.dbo.sysobjects where name = "##tempMessages")
begin
drop table ##tempMessages
end

create table ##tempMessages
(
id decimal(3) identity not null,
ExtraData varchar(10) not null
)

insert ##tempMessages
(
ExtraData
)
select ExtraData
from Table
order by cc.Colorcode
Reply
Map
View

Click here to load this message in the networking platform