RE: Extreme Discomfort...

RE: Extreme Discomfort...

 

  

OK... I think this was a Roseann Rosanadanna moment - "Nevermind"...

The results are inconsistent because I have no order-by clause... That's all. I'll disappear now.

-----Original Message-----
From: Juan Vera [mailto:mssqldba-ezmlmshield-x46454167.[Email address protected]
Sent: Monday, October 31, 2005 9:44 AM
To: LazyDBA Discussion
Subject: Extreme Discomfort...

Can someone run the snippet below (in Q/A in grid mode) and explain what happens between rows 5136 & 5138 of the result set, if anything?

Best,

Juan Cristián

/******************/

create table #unicode([#] smallint, [unicode] char(1))

declare @i int

select @i = 0
while @i < 32000
begin
insert into #unicode
select
@i as [#]
,nchar(@i) as [unicode]

select @i = @i + 1
end

select * from #unicode

drop table #unicode


---------------------------------------------------------------------
TO REPLY TO EVERBODY , PLEASE CLICK REPLY-ALL, NOT JUST REPLY
Website : http://www.LazyDBA.com
To unsubscribe: http://www.lazydba.com/unsubscribe.html


MS Sql Server LazyDBA home page