Viewing 15 posts - 46 through 60 (of 226 total)
Thank you for the feedback.
I'm sure you've heard the saying "you can't manage what you can't measure." A lot of times in the technical world, your manager...
May 7, 2009 at 12:57 pm
Agreed. I just see too many people suggesting to generate create index statements from the missing index DMVs and simply run them.
Gail,
Do you have a general process you go through...
May 7, 2009 at 8:05 am
Is your report server configured to send email?
http://msdn.microsoft.com/en-us/library/ms160334(SQL.90).aspx
If it is you will need to create a subscription for the report. If you have publisher rights on the report, you...
May 5, 2009 at 3:05 pm
Scott Solice (5/5/2009)
May 5, 2009 at 2:25 pm
There are others but none as good at SQLServerCentral!
Here's the reporting services board http://www.sqlservercentral.com/Forums/Forum150-1.aspx?Update=1
Some other reporting links I use are:
http://www.sqlpass.org/LearningCenter/Top10Lists.aspx#learnrs
http://msdn.microsoft.com/en-us/library/ms170246.aspx
http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1172656,00.html#">
http://www.sqlpass.org/LearningCenter/Top10Lists.aspx#learnrs
http://msdn.microsoft.com/en-us/library/ms170246.aspx
http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1172656,00.html#
However, the...
May 5, 2009 at 2:09 pm
It could be a lot of things. Running report services on xp pro is a bit unusual. Your production server is probably just over utilized for this query...
May 5, 2009 at 1:58 pm
Very limited reporting functionality is in workgroup edition: http://www.microsoft.com/sqlserver/2005/en/us/reporting-services-features.aspx
This article is intended for express edition, but may be helpful for workgroup as well... http://www.sqlservercentral.com/redirect/articles/66737/
May 5, 2009 at 1:53 pm
Sounds like the manager doesn't know what he/she wants. I would use this as an opportunity to control your own destiny. You decide what numbers to measure yourself...
May 5, 2009 at 1:31 pm
That is strange. I can run 350 records in under 1 second with the same query. What kind of date range are you looking at? You may have...
May 5, 2009 at 1:27 pm
Those are probably scheduled subscriptions. I happen to include them in my reports, but it's up to you. I like to provide a total number of reports ran...
May 5, 2009 at 12:59 pm
this one runs quicker for me...displays only user tables
SELECT
a.name, object_name (i.id) TableName, rows as RowCnt
FROM sysindexes i INNER JOIN sysobjects o ON (o.id = i.id AND o.xType = 'U')
inner...
May 5, 2009 at 11:48 am
Good question....if you have a helpdesk system, this is a great place to start. Open tickets, closed tickets in a certain time period, average days to close a ticket....
I...
May 5, 2009 at 11:08 am
this should get you started:
select ExecutionLog.UserName,Catalog.Name,Catalog.Path,ExecutionLog.TimeEnd,
ExecutionLog.Parameters
from Catalog inner join ExecutionLog on
Catalog.ItemID = ReportID
where
ExecutionLog.TimeEnd between @begdate and @enddate
Order by ExecutionLog.TimeEnd
This is in the reportserver database
May 5, 2009 at 11:00 am
Glad to see the Reporting Services articles. This is a good one. Never would've thought of creating the formatting info back in the sproc...
Also nice use of...
May 5, 2009 at 8:19 am
Viewing 15 posts - 46 through 60 (of 226 total)