Viewing 15 posts - 1,906 through 1,920 (of 3,489 total)
Marie,
That's what I was thinking... It's just easier to do this in steps. Then maybe put them all in a stored procedure, if this has to be done more...
May 20, 2016 at 1:14 pm
so write it to a temp table and do a series of updates on it.
May 19, 2016 at 7:08 pm
I tend to validate my design by collecting a list of questions the database has to answer. If I can work through how to design the queries (not necessarily...
May 19, 2016 at 6:12 pm
REPLACE is your friend. =)
May 19, 2016 at 4:22 pm
Hope you're okay with ugly...
SELECT ID
, col
, rn
FROM
(
SELECT ID
, Col
, Prefix
, NumPart
, ROW_NUMBER() OVER (PARTITION BY Prefix ORDER BY NumPart DESC) AS rn
FROM (
SELECT ID
, col
, LEFT(col,1) AS Prefix
, CAST(RIGHT(col,2)...
May 18, 2016 at 10:03 pm
Steve,
See if Kevin Boles has any horror stories that aren't confidential. =)
May 18, 2016 at 10:01 pm
Use a Tally table and a deliberate cross join?
May 18, 2016 at 8:32 pm
how would I query just those people who are assigned to just the AMB facility? --- kinda contradicts your subject question... but anyway...
If you're filtering for a single value, you...
May 18, 2016 at 7:53 pm
I don't know of one. Shouldn't be very hard to write. It might be something like:
Device--(M,1)--IPAddress
and then you'd have location, deviceType, etc about each device. Not a...
May 18, 2016 at 3:13 pm
tracking net IP addresses how? are you one of the poor souls using static IP?
Could you be more specific? Sounds like you need a BYTE for each octet, and then...
May 18, 2016 at 2:13 pm
May 18, 2016 at 12:53 pm
If there is no data in any of the left join columns, I do not want to display data on the report.
Then why not use an inner join?
May 17, 2016 at 8:56 pm
I was looking around to see if I could answer your question, but what I found is that v1 may not work with SSRS 2014.
Check out this article.
May 17, 2016 at 1:12 pm
Damian,
can someone create a stored procedure that brings all the data together into one dataset? I suppose you could write a stored procedure that creates a temporary table and...
May 16, 2016 at 2:18 pm
Sounds like you could use a subscription to do this. That will handle sending the reports to each user. If you're not using Enterprise, you can use Jason Selburg's...
May 16, 2016 at 1:15 pm
Viewing 15 posts - 1,906 through 1,920 (of 3,489 total)