Viewing 15 posts - 436 through 450 (of 1,222 total)
Instead of controlling visibility, use formulas for the value being display (either display the text required or empty string) and for the background colour (e.g. either "White" or "Gray")
April 22, 2012 at 10:18 pm
I mean exactly that - don't update the report server database. If report manager is already hosed, you have limited ability to do anything that is supported. Start...
April 20, 2012 at 6:49 am
If all else fails, the RDL is stored in table Catalog in the ReportServer database.
The following SELECT is a start to getting at the RDL
SELECT
Name ...
April 17, 2012 at 10:52 pm
When you deploy a report to reporting services, it is actually stored in the ReportServer database. If you need to get a copy of a report, the normal way...
April 16, 2012 at 11:22 pm
This sounds like transactional replication is the best option provided that you have a scheme in mind for ensuring any unique constraints (including primary keys) do not cause any conflicts...
April 16, 2012 at 11:20 pm
I got to the point where I was constantly fighting fires and never really getting anything "useful" done. So, I decided that I would stop fighting the fires. ...
April 6, 2012 at 5:10 am
My first question is "Why are you even needing to specify DOP (or any other hint) ?"
Generally SQL Server will do a pretty good job without any hints. When...
March 26, 2012 at 9:28 pm
Whilst it might take a while, eventually you will get an error when you run out of disk space. So, I kinda think that the correct answer is most...
March 15, 2012 at 10:48 pm
Not all that surprising, really. What reporting services is really doing is allowing you to access the parameter object for the parameter you are using. This object has...
March 10, 2012 at 7:05 am
In the report that is calling the subreport, check the value that is being passed in the parameter. By default, you get the first value only. The value...
March 6, 2012 at 8:45 pm
The only way to do this using Analysis Services is to include all of the required columns as attributes of a dimension (this may be called a fact dimension or...
March 5, 2012 at 8:47 pm
Try the following...
UPDATE dbo.House set [Location] = geography::STPointFromText('POINT(' + CAST([Longitude] AS VARCHAR(10)) + ' ' +
CAST([Latitude] AS VARCHAR(10)) + ')', 4326)
February 27, 2012 at 7:52 pm
As far as SSIS is concerned, your SQL 200 source is just like any other data source. As long as you use the correct syntax for the data source,...
February 13, 2012 at 7:01 pm
I would expect percentages to have values in the range 0 - 1 (with format of P2) or maybe a range of 0% - 100%. For numbers, I would...
February 6, 2012 at 7:34 pm
Once a subscription has been initialised, you do not need any snapshots to be created. So, you can either disable the snapshot agent job or delete its schedule. ...
February 5, 2012 at 9:04 pm
Viewing 15 posts - 436 through 450 (of 1,222 total)