Viewing 15 posts - 796 through 810 (of 9,641 total)
I assume you mean non-printable characters like Carriage Return or Tab?
August 18, 2014 at 11:20 am
How are you running the report, in BIDS or deployed to a report server? I'd recommend deploying it to a report server and testing performance there. You can...
August 18, 2014 at 11:16 am
I guess this is "simpler":
WITH addedFieldValue
AS (
...
August 18, 2014 at 11:12 am
It looks like the query itself could use some work, but I won't start there.
Basic indexing strategies are to have your index keys be columns that are involved in filtering...
August 18, 2014 at 11:08 am
Good points thus far. Something I think you need to take into account is that you have asked for contracting rates, not consulting rates. Contracting rates will be...
August 18, 2014 at 11:03 am
If you read the 1st link in my signature and post using those suggestions you'll get more and probably better answers because what you have posted so far doesn't really...
August 18, 2014 at 10:48 am
The error means that the data type for ASUP_ID (according to the metadata) has changed either in the input or the output of the task and by clicking "Yes" the...
August 18, 2014 at 10:38 am
This behavior is part of the standard and should not be affecting the results of your query. I recommend you read these 2 articles:
http://www.sqlservercentral.com/articles/Advanced+Querying/gotchasqlaggregatefunctionsandnull/1947/%5B/url%5D - which is old, but...
August 18, 2014 at 10:33 am
As far as index sizes, there certainly are cases where an index can be nearly as large as the base table itself, and I'd argue that if that is the...
August 18, 2014 at 10:25 am
Just thought of something, that might help you, but because I don't know how you are consuming the data in report. Here's the idea:
1 data set that returns the...
August 18, 2014 at 10:20 am
You can't do that natively in SSRS. Each data set in a report is executed whenever the report is run. SSRS doesn't currently support multiple result sets. ...
August 18, 2014 at 10:13 am
I'd never leave a database file autogrowth setting at 1MB. The smaller the growth size the more physical fragmentation the file will have on disk. The next physical...
August 15, 2014 at 10:48 am
I think there are some potentially simpler options:
1. If you have connectivity between sites you could look at setting up mirroring and then "failover" to your mirror when everything...
August 15, 2014 at 10:39 am
The solution pointed to by Piet is a good starting point. I'd modify it to do something more along these lines:
SELECT
Catalog.Type,
Catalog.Name,
...
August 15, 2014 at 10:33 am
paul.knibbs (8/15/2014)
August 15, 2014 at 6:46 am
Viewing 15 posts - 796 through 810 (of 9,641 total)