Viewing 13 posts - 1 through 13 (of 13 total)
Interesting article. I'm wondering why you chose SSIS instead of SSRS for this task. SSRS seems tailor-made for this.
Mike Hayes
September 3, 2010 at 6:27 am
We addressed this issue by creating a view in SQL Server that displays the requested data, and giving the users the rights to select from that view. Excel can...
March 27, 2009 at 8:46 am
It sounds like the Excel export is using all of the available memory. This would be happening on the server side. How many rows are you attempting to...
December 1, 2008 at 9:07 am
When you say it's not working, what's not working? It doesn't work at all? Do you get an error? What?
Mike Hayes
November 28, 2008 at 6:33 am
Check out Reporting Services Scripter: http://www.sqldbatips.com/showarticle.asp?ID=62. I haven't used it, but I believe that it will move subscriptions.
Mike Hayes
September 19, 2008 at 9:01 am
You can work around the limitation in Excel 2003 by breaking up the report into multiple tabs. On the table properties, go to the Groups tab and add...
August 21, 2008 at 9:11 am
This is written from the other perspective, but you still might find it useful:
http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/sqlorcle.mspx#EWBAI
Mike
June 27, 2008 at 9:09 am
I'm finding documentation on this functionality in Oracle, but not SQL Server. Is this supported in SQL Server?
June 11, 2008 at 9:31 am
No. You don't have to create two versions of the same report. Just create two schedules. After creating the first schedule, go back to the Subscription...
June 10, 2008 at 8:56 am
Try something like:
SELECT
SUM(CASE WHEN age>=60
THEN measure ELSE 0 END) AS over_60,
SUM(CASE WHEN age>40 AND age <60
THEN measure ELSE 0 END) AS over_40,
SUM(CASE WHEN age>18 AND age <=41
THEN...
June 6, 2008 at 8:25 am
A quick way to divide the problem in half would be to temporarily add the user to the administrators group on the PC. If this takes care of the problem, ...
March 28, 2007 at 9:01 am
While doing installs of Reporting Services recently, I came upon an issue that caused errors similar to the one you describe. Try the following:
Check properties of Reports virtual directory.
-Right-click My...
December 14, 2006 at 8:43 am
Viewing 13 posts - 1 through 13 (of 13 total)