
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
When the following field
FULLCAPTION Computed by: ((
with recursive
Hospitals_Recursive as (
Select H.HospitalID, H.HospitalParentID, H.Caption,
1 as ChildLevel
From Hospitals H
Where H.HospitalID = Hospitals.HospitalID
union all
Select H.HospitalID, H.HospitalParentID, H.Caption,
Hr.ChildLevel + 1 as ChildLevel
From Hospitals_Recursive HR inner join Hospitals H
on HR.HospitalParentID = H.HospitalID
),
Hospitals_List as (
Select Caption
From Hospitals_Recursive
Order by ChildLevel desc
)
Select list(Caption, ', ')
From Hospitals_List
))
is used in a query:
select HospitalID, FullCaption From Hospitals
Order by cast(FullCaption as varchar(32765));
access violation happens.
|
|
Description
|
When the following field
FULLCAPTION Computed by: ((
with recursive
Hospitals_Recursive as (
Select H.HospitalID, H.HospitalParentID, H.Caption,
1 as ChildLevel
From Hospitals H
Where H.HospitalID = Hospitals.HospitalID
union all
Select H.HospitalID, H.HospitalParentID, H.Caption,
Hr.ChildLevel + 1 as ChildLevel
From Hospitals_Recursive HR inner join Hospitals H
on HR.HospitalParentID = H.HospitalID
),
Hospitals_List as (
Select Caption
From Hospitals_Recursive
Order by ChildLevel desc
)
Select list(Caption, ', ')
From Hospitals_List
))
is used in a query:
select HospitalID, FullCaption From Hospitals
Order by cast(FullCaption as varchar(32765));
access violation happens. |
Show » |
| The cvs commits can not be displayed for repository Firebird at the moment since the log has not yet been parsed. The log will be parsed the next time the VcsService runs. If you have administrators privileges you can hasten the next time the service will run in the service section of the Administration pages.
|
|