Viewing 15 posts - 16 through 30 (of 40 total)
You could also sort your data at the extraction point. That is substantially faster than the sort transform, since the heavy lifting is done on the SQL server side and...
October 5, 2010 at 7:21 am
You would have to create a single package for each table which you wish to operate upon. Because SSIS is metadata driven (meaning that your columns/datatypes cannot change at run...
October 5, 2010 at 7:19 am
Can you please post your script code so that we can see what it is you are trying to do? Thanks.
October 5, 2010 at 7:10 am
My vote would be for either the Sort Transformation (atrocious!!) or the Partial Cache Lookup on the Advanced properties of the Lookup Transform.
If you write solid code, your script can...
October 5, 2010 at 7:09 am
Are you utilizing Sharepoint lists at all? Or are you just needing to be able to publish an HTML document to a general location on Sharepoint? I know that there...
October 5, 2010 at 7:07 am
That was exactly what I needed. Thanks, Mark!
October 4, 2010 at 8:29 am
Works perfectly!! Thank you, thank you!!
September 30, 2010 at 7:57 am
Finally found the answer.
For those interested, I encompassed the two "legend" matrices into a subreport. Then, I included that subreport as part of the details report as a table header....
July 29, 2010 at 7:01 am
In order for the image to display when the report is being rendered on the report server, you have to upload the image to the report server itself. Upload an...
April 27, 2010 at 7:57 am
There is a reason -- the reason is that the solution that I posted above WORKS, albeit slowly. I tried your solution, and I have performance issues with it as...
January 4, 2010 at 2:09 pm
Crap -- you're right about not getting the same results. There has to be a way around using ISNULL. That specific piece is causing records to come back 200/minute, which...
January 4, 2010 at 12:42 pm
After working with MM's query, I was able to get results to come back in 36 seconds. Below is the final SQL that I was able to get working:
--= Dump...
January 4, 2010 at 9:23 am
mister.magoo (12/30/2009)
If you...
January 4, 2010 at 6:17 am
This is what I've come up with so far:
declare @count int
declare @groupcount int
declare @NumberofRows int
select @NumberofRows = COUNT(*) from @school
set @count = 1
set @groupcount = 0
while @count <= @NumberofRows
begin
if (select...
December 29, 2009 at 1:01 pm
I just did a select distinct, and those are all of the columns from the table.
December 29, 2009 at 11:32 am
Viewing 15 posts - 16 through 30 (of 40 total)