Viewing 15 posts - 1,366 through 1,380 (of 3,489 total)
Oh, so are you doing that through SSIS?
February 2, 2018 at 10:33 am
NineIron,
Are you doing the summary for this stuff in Access or where? I'm only asking because doing this in SSRS is stupid easy (use a Matrix)
Pieter
February 2, 2018 at 10:05 am
I don't think I have ever gotten SSRS completely configured properly before, so I'll take it!
Gotta celebrate the victories when you get them!
The Report Builder stuff totally...
February 1, 2018 at 6:26 pm
I've gotten Report Builder to work, so I'm getting somewhere. When I'm more alert, I'll see if I can get SSRS properly configured. (After watching several videos on it)....
February 1, 2018 at 4:24 pm
Great, I'll check it out...
Because I let the installer configure everything, and of course the portal doesn't work right. (I can see it, but can't publish.)
February 1, 2018 at 1:53 pm
Are the recommendations/steps for configuring SSRS the same since 2008? I've seen videos on it on youtube and I could probably do that (have a 2012 book too...) It's just...
February 1, 2018 at 12:56 pm
Sue,
Got annoyed and uninstalled and reinstalled it. Maybe I need to learn to read the logs. Which should I look at? (Where is it?) Right now I can connect...
February 1, 2018 at 1:29 am
Unless you can group your data somehow, I don't think so. What you're describing is Excel, not SSRS.
January 31, 2018 at 11:02 am
Could you post a CREATE TABLE script and an INSERT script to populate it?
I think you can use Jeff Moden's DelimitedSplit8K function to break the individual attributes...
January 30, 2018 at 9:38 pm
I think this is close... back up your table or wrap this in a transaction and roll it back when testing.. The INTERSECT returns the DuplicatingValue where there is at...
January 30, 2018 at 8:31 pm
Could you post the CREATE TABLE script for the expected result?
It seems that you could do this using a combination of the windowing function LAG() and STUFF() to concatenate...
January 29, 2018 at 4:37 pm
DelimitedSplit8K is your friend.
Happy reading. Happy learning.
January 23, 2018 at 10:24 pm
Something like this:CREATE TABLE Insurance (
RecordNo INT IDENTITY,
PolicyNo INT NOT NULL);
GO
INSERT INTO Insurance (PolicyNo)
VALUES (34564),(67548),(34564),(98271),(90198),(98271);
CTE to identify and delete...
January 20, 2018 at 2:09 pm
Oh, FFS, Got Google?
https://www.databasejournal.com/features/mssql/managing-sql-server-services-with-powershell.html
should give you a pretty good idea.
January 14, 2018 at 7:55 pm
Then use OUTER APPLY instead of CROSS APPLY.
January 12, 2018 at 8:55 am
Viewing 15 posts - 1,366 through 1,380 (of 3,489 total)