I have a Stored Procedure that selects data from a view as such
In the view the data is sorted by a date field however when calling this stored procedure the results are un-sorted and I have to actually add an order by to the stored procedure.Code:ALTER proc [dbo].[procMeetingSummary]( @top int) as select top (@top) * from dbo.vwMeetingSummary
Is this a bug?


Reply With Quote