Viewing 15 posts - 1,696 through 1,710 (of 26,488 total)
April 10, 2018 at 5:40 pm
April 10, 2018 at 5:38 pm
April 10, 2018 at 1:42 pm
April 10, 2018 at 8:42 am
April 10, 2018 at 7:30 am
Here is a way to make the calculation:
declare @testdate datetime = '2013-10-24';
select
getdate() as Today
, @testdate as DueDate
, datediff(year,@testdate,getdate()) -
case when...
April 8, 2018 at 7:45 pm
Just took a quick look at the code, how does it ensure it isn't "duplicating" indexes that already exist? Remember, a duplicate index doesn't necessarily mean one that has identical...
April 4, 2018 at 8:20 am
Want my guess. In the source table the EnrollmentRecordID is a uniqueidentifier. In the destination table the EnrollmentID is an int. The OP probably wants to map each unique uniqueidentifier (assuming...
April 3, 2018 at 5:32 pm
April 3, 2018 at 11:49 am
April 3, 2018 at 9:06 am
April 3, 2018 at 7:38 am
Viewing 15 posts - 1,696 through 1,710 (of 26,488 total)