Viewing 5 posts - 1 through 5 (of 5 total)
HI, I got a error using this way:
Msg 0, Level 11, State 0, Line 0
A severe error occurred on the current command. The results, if any, should be discarded.
But...
April 14, 2010 at 2:04 am
Thanks for everyone.
Now I found the issue:
Because the fieldB is varchar , and the fieldC is nvarchar.
select * from tableA where fieldB in(select fieldc from tablec)
If I alter the fieldC...
March 8, 2010 at 11:31 pm
http://support.microsoft.com/kb/883415
Yes, This is my issue.
Are you on SP4 ?
Yes, on sp4.Sp4 has some problems???
August 21, 2007 at 4:44 am
case 1:
select dbo.GetDescription(lvl_id,6),dbo.GetDescription(lvl_id,8)
from tblHierarchy
the result is ok:Area City.
case 2:
select dbo.GetDescription(lvl_id,6),dbo.GetDescription(lvl_id,8)
from tblHierarchy
group by dbo.GetDescription(lvl_id,6),dbo.GetDescription(lvl_id,8)
the result is wrong:Area Area
case 3:
select dbo.GetDescription(lvl_id,6),dbo.GetDescription(lvl_id,8)
from tblHierarchy
group by dbo.GetDescription(lvl_id,8),dbo.GetDescription(lvl_id,6)
the result is wrong:City City
P.S: The...
August 17, 2007 at 12:59 am
Viewing 5 posts - 1 through 5 (of 5 total)