Viewing 15 posts - 1,381 through 1,395 (of 3,501 total)
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
January 11, 2018 at 7:45 pm
why what works? The ROW_NUMBER() OVER (PARTITION...) part?
PARTITION OVER is super simple - it's analogous to grouping in a totals/aggregate query, but you still get the individual records, which...
January 9, 2018 at 4:14 pm
I find it hard to believe you've been coding this long (and asking questions) and can't write a simple correlated subquery.
Say I want to show all the details...
January 7, 2018 at 9:21 pm
Viewing 15 posts - 1,381 through 1,395 (of 3,501 total)