Viewing 15 posts - 436 through 450 (of 627 total)
Brandie Tarvin (11/5/2015)
At risk of being lynched: Crystal Reports is probably the easiest ad-hoc reporting tool a user with no experience can learn to use.
Well I agree with you on...
November 5, 2015 at 6:28 am
GilaMonster (11/4/2015)
yb751 (11/4/2015)
Also as Gail's answer eluded to, it only helps if those tables have an index. If you have any heaps you are out of luck.
No, index usage...
November 4, 2015 at 2:53 pm
Also as Gail's answer eluded to, it only helps if those tables have an index. If you have any heaps you are out of luck.
November 4, 2015 at 11:51 am
edfimasa (10/30/2015)
I have to check the results, using SQL I can fix it.The issue was using SSRS for my colleague .
Thanks
You are right in that you can't just do a...
October 30, 2015 at 12:29 pm
Or something like this...
DECLARE @myTable TABLE (SomeDate DATE, Col1 INT, Col2 INT, Name NVARCHAR(10))
INSERT INTO @myTable
VALUES
('2015/10/01', 50, 13, 'personA'), ('2015/10/01', 50, 11, 'personA'), ('2015/10/03', 50, 21, 'personA'), ('2015/10/01', 50, 17,...
October 30, 2015 at 12:26 pm
Is this what you are looking for?
DECLARE @myTable TABLE (SomeDate DATE, Col1 INT, Col2 INT, Name NVARCHAR(10))
INSERT INTO @myTable
VALUES
('2015/10/01', 50, 13, 'personA'), ('2015/10/01', 50, 11, 'personA'), ('2015/10/03', 50, 21, 'personA'),...
October 30, 2015 at 12:13 pm
Welcome to the forum. In the future please post some DDL code to help us help you. Trust me you'll get help much faster.
Read this excellent article on...
October 30, 2015 at 12:05 pm
Being in N. America Rugby isn't very popular here but I got the question right anyway using (American) Football as my reference. 😉
October 30, 2015 at 8:01 am
Ed Wagner (10/29/2015)
yb751 (10/29/2015)
I was thinking about unleashing it but then I thought...
October 29, 2015 at 9:23 am
Agreed, my #1 source online for everything SQL. I've learned more on these forums than anywhere else hands down. 😀
October 29, 2015 at 7:40 am
I was on my last eye twitch yesterday (so to speak) so I put together this image. (attached)
I was thinking about unleashing it but then I thought maybe it was...
October 29, 2015 at 7:34 am
Lowell (10/28/2015)
SQLPain (10/28/2015)
October 28, 2015 at 1:02 pm
Try this:
SELECT
ScheduleID,
[Path],
[Name],
s.Description
FROM ReportServer.dbo.catalog c
JOIN ReportServer.dbo.Subscriptions s on c.ItemID = s.Report_OID
JOIN ReportServer.dbo.ReportSchedule rs on rs.SubscriptionID = s.SubscriptionID
October 28, 2015 at 12:59 pm
SQLPain (10/28/2015)
'This job is owned by a report server process. Modifying this job could result in database incompatibilities. Use...
October 28, 2015 at 12:25 pm
Have you opened the job and more particularly that job step? Likely, all you need to do is modify the call and add more recipients.
Look for something like:
@recipients = 'John@AdventureWorks.com',
And...
October 28, 2015 at 9:26 am
Viewing 15 posts - 436 through 450 (of 627 total)