Viewing 6 posts - 1 through 6 (of 6 total)
Don't go any further out of your way. I have enough of an understanding to test this using the real thing. As well, this answer fits well enough...
March 8, 2010 at 2:44 pm
I agree with you on the catch-all nature of the system design. I am spending a lot of my time rewriting these to Dynamic-SQL and educating the users as...
March 8, 2010 at 2:12 pm
It’s not an easy feat to post sample data. The type of data involved is regulated and there are serious privacy issues involved, so I could only post data...
March 8, 2010 at 1:22 pm
We do not have before/after query plans at this time.
March 8, 2010 at 11:41 am
The code is (currently):
create view dbo.vwSystemDateTime
as
select getdate () SystemDateTime
go
CREATE FUNCTION [dbo].[BedIsAssigned]
(
@BedID int
)
RETURNS bit
AS
BEGIN
DECLARE @Result bit
IF EXISTS(SELECT Organization_Bed_Assignment_ID
...
March 8, 2010 at 11:39 am
I have to throw in here. I have had similar thoughts as to the author in the past. However, at the time, I was working on low volume...
March 4, 2008 at 7:43 am
Viewing 6 posts - 1 through 6 (of 6 total)