Viewing 15 posts - 721 through 735 (of 1,246 total)
Would something like this work for you?
WITH
cte_PostalVariations AS (
SELECT DISTINCT -- only use DISTINCT if there is a possibility of dupes in the source...
May 3, 2017 at 1:54 pm
Yup... I read it as, "I haven't been out of England in 35 years"...
In that case, I'm back to my original suggestion... Make sure she doesn't skimp on the...
May 3, 2017 at 9:14 am
Thank you. And even though it has been 35 years since I left...
May 3, 2017 at 9:02 am
Jason... have a look at the following article for a simplification of...
May 2, 2017 at 5:13 pm
Lynn Pettis - Tuesday, May 2, 2017 4:16 PMEverything should be good. If any problems please let me know.
It worked. Put $20...
May 2, 2017 at 4:37 pm
Eh... What the heck...
CREATE FUNCTION dbo.tfn_FederalHoliday
/* =====================================================================================================
05/02/2017 JL, Created. If the supplied is a federal holiday, the function will return the holiday name.
=====================================================================================================...
May 2, 2017 at 4:19 pm
I tried to throw a few bucks to the cause but got the following message...
May 2, 2017 at 2:09 pm
For a case like this, nothing beats a good ol' fashioned calendar table... At least in my humble opinion...
Fact is, holidays tend not to change very often (if ever)...
May 2, 2017 at 12:58 pm
Give this a try...
WITH
cte_AddRN AS (
SELECT
t.admdt,
t.dischdt,
t.ID,
RN = ROW_NUMBER() OVER (PARTITION BY t.ID ORDER BY t.admdt)
FROM
#t t
WHERE...
May 1, 2017 at 5:14 pm
Working with the page headers & footers is, as you've noticed is significantly trickier... and... what you're attempting is a bit unorthodox.
Assuming that you're dealing with a relatively small...
May 1, 2017 at 4:55 pm
April 28, 2017 at 12:59 pm
The differences:
Moved &rs%3aCommand=Render to BEFORE the variable and value. The %3a is new...
April 28, 2017 at 12:34 pm
Here's an example from one of our reports that successfully drills through to a new report in a new window...
="void(window.open('" & Globals!ReportServerUrl & "?" & Globals!ReportFolder &...
April 28, 2017 at 10:23 am
April 28, 2017 at 9:34 am
Here's a slightly different option that concatenates the the column name in a variable rather than using the FOR XML method
DECLARE @UnpivotList NVARCHAR(MAX) = N'';
SELECT...
April 28, 2017 at 7:50 am
Viewing 15 posts - 721 through 735 (of 1,246 total)