Viewing 15 posts - 7,891 through 7,905 (of 18,926 total)
I see your point. My questions was strickly refferring to building a bundle of reports that we then sell as a package to a client.
In that case we grant...
August 16, 2010 at 8:49 am
It won't really. The only different it'll make is that now the report is on the web server rather than report server. Still the source is freely available...
August 16, 2010 at 8:45 am
Something like this should do the trick.
SELECT COUNT(dtCnts.*) As NbApplications, dtCnts.CntContacts FROM (
SELECT ApplNbr, COUNT(*) As CntContacts FROM dbo.Contacts GROUP BY ApplNbr
) dtCnts
August 15, 2010 at 6:35 pm
It's the Anakin Skywalker avatar. Back when I set it up everybody where using star wars avatars :w00t:.
But ya I'm young too :-P.
August 14, 2010 at 6:24 am
Ok, just make sure that you don't put this into production. Or that if you do that all docids are indexed AND that you warn everybody that this is...
August 13, 2010 at 1:10 pm
Hmm, can you give me a 50 000 foot review?
I never used ssis but I guess I'd figure it out with a fairly detailed plan.
August 13, 2010 at 12:32 pm
Awesome. Is it possible to do a similar trick when exporting a report from SSRS to let's say Excel or PDF?
This is where I really hit a wall when...
August 13, 2010 at 12:19 pm
Care to elaborate or was to posted in the wrong thread?!?
August 13, 2010 at 11:58 am
Here's a quick demo. Run this query. Then copy the results of the query and paste it back into ssms and run that query.
declare @docid int
SET @docid =...
August 13, 2010 at 10:33 am
You need to use dynamic sql to do this.
Is this something you need to implement permanantly into the system or just something to help you find something you "lost" in...
August 13, 2010 at 10:27 am
That won't work, at least in my case, as I needed to concatenate for each group. Myabe it'll help somebody else.
August 13, 2010 at 8:32 am
Ninja's_RGR'us (8/13/2010)
August 13, 2010 at 7:37 am
If that can help, how about the idiot here who just decided to reboot all the servers because 1 SINGLE employee couldn't connect on the network when all the while,...
August 13, 2010 at 7:24 am
Lynn Pettis (8/12/2010)
Ninja's_RGR'us (8/12/2010)
Lynn Pettis (8/12/2010)
CELKO (8/12/2010)
tymberwyld (11/10/2008)
August 12, 2010 at 5:09 pm
My code would be fast.
If you were to use that code to do a select in the lookup table then you'd get awful performance. In your case you're better...
August 12, 2010 at 5:06 pm
Viewing 15 posts - 7,891 through 7,905 (of 18,926 total)