User Bart - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T07:37:49Zhttp://stackoverflow.com/feeds/user/16980http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/978734/ssrs-2008-word-export-doesnt-print-to-landscape0SSRS 2008 word export doesn't print to landscapeBart2009-06-11T00:11:16Z2009-11-17T13:00:01Z
<p>I have a number of SSRS 2008 reports that need to be exported to word in landscape mode. The reports look great when exported but when you attempt to print (or even preview) the page Word appears to be trying to print the reports in portrait mode thus cutting off all content to that is more then 8.5" from the leftmost side of the page. </p>
<p>I have ensured that the following settings have been made.</p>
<p>1) Report -> Report Properties -> Landscape is set
2) the paper size is 11" wide X 8.5" high.
3) the body properties are smaller than the overall paper size.</p>
http://stackoverflow.com/questions/281436/reporting-services-images-do-not-display-after-report-is-is-deployed1Reporting Services Images do not display after report is is deployedBart2008-11-11T16:41:40Z2009-09-25T08:54:46Z
<p>I have a SSRS 2005 report that has a number of images in it. the way that I have the images included is I have an image object with the URL set in the value property. the actual images are hosted by and IIS virtual directory on the same serer. I'm doing it this way because i need to dynamically change the image source using an expression depending on the data within the report. </p>
<p>The problem is that the images work great when previewing the report in Visual Studio but do not display when the report is deployed. When I look at the HTML rendered by SSRS the SRC attribute of the image tag is an empty string. </p>
http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112038#112038132Answer by Bart for What is the worst interviewee answer?Bart2008-09-21T20:35:33Z2009-06-14T04:48:38Z<p>My favorite was a candidate that told me object oriented programming was "Where you drag the components from the toolbox in Visual Studio onto the form"</p>
<p>I cut the interview pretty short after that and reviewed our pre-screening process.</p>
http://stackoverflow.com/questions/516630/best-practice-for-running-sql-server-reporting-services-should-i-run-on-the-data/516702#5167023Answer by Bart for Best practice for running SQL Server reporting services. Should I run on the database or web server?Bart2009-02-05T16:37:31Z2009-02-05T21:38:12Z<p>Depends...</p>
<p>The reporting services rendering is fairly processor intensive so you need to keep that in mind. Typically if I'm designing a system with heavy load or throughput requirements I place the reporting services instance on its own server. The best practice is really dependent on the complexity of your system. </p>
<p>If a third server is not an option and the two servers you already have are similarly speced I would probably place it on the one with the lowest processor load. If you place the reporting server on the web server make sure that Reporting services uses your dedicated database server for the reporting services meta-data so that you don't have to install the RDBMS on both machines. </p>
<p>You need to keep in mind that if you don't place the reporting server on the same box as SQL server you will need another SQL Server license. The product is only "free" if it is installed on the same machine as SQL. </p>
http://stackoverflow.com/questions/510885/inheritance-in-reporting-services/516721#5167210Answer by Bart for Inheritance in Reporting ServicesBart2009-02-05T16:40:45Z2009-02-05T16:40:45Z<p>you should be able to achieve this using sub reports</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/489696#4896962Answer by Bart for What real life bad habits has programming given you?Bart2009-01-28T22:29:14Z2009-01-28T22:29:14Z<p>I see interfaces everywhere i.e.</p>
<p>I think of a chair, a stool, and pants as all implementing the IFitAss interface.</p>
http://stackoverflow.com/questions/474289/static-port-assignment-in-sql-server-2008-does-not-save0Static Port Assignment in SQL Server 2008 Does not saveBart2009-01-23T20:04:37Z2009-01-23T21:02:26Z
<p>I have two named instances of SQL Server 2008 and am trying to set static ports for each instance. I open the SQL Server Configuration Manager _> expand "SQL Server Network Configuration" -> click the instance I want to change -> and select TCP/IP.</p>
<p>From here any configuration changes that I make are not persisted after I hit OK. I've tried setting the "TCP Dynamic Ports" option to blank, and setting my desired port # under the "TCP Port" option under the IPALL section but each time when I return to the configuration screen the changes no longer appear.</p>
<p>I've tried bouncing the service and that doesn't help either.</p>
<p>Does anyone have any thoughts as to what is going on here?</p>
http://stackoverflow.com/questions/474289/static-port-assignment-in-sql-server-2008-does-not-save/474506#4745060Answer by Bart for Static Port Assignment in SQL Server 2008 Does not saveBart2009-01-23T21:02:26Z2009-01-23T21:02:26Z<p>Turns out the problem was that my account wasn't a local admin on the machine. I'm a sysadmin on the SQL Server so I assumed it would work. </p>
<p>The frustrating thing is that the interface didn't alert me that i didn't have permissions it simply told me that my changes were saved and proceeded to ignore them. </p>
<p>thanks to all those who answered though!</p>
http://stackoverflow.com/questions/420731/can-i-use-silverlight-2-0-with-asp-net-2-0/420740#4207401Answer by Bart for Can I use Silverlight 2.0 with ASP.NET 2.0?Bart2009-01-07T15:33:31Z2009-01-07T15:33:31Z<p>yes Sivler light can be used with asp.net 2.0 and can be also be deployed to other platforms such as PHP</p>
http://stackoverflow.com/questions/288392/what-is-the-best-way-to-implement-background-services-for-an-asp-net-application/293493#2934930Answer by Bart for What is the best way to implement background services for an ASP.NET application?Bart2008-11-16T04:27:37Z2008-11-16T04:27:37Z<p>Honestly I've never been a fan of trying to simulate a windows service inside an ASP.net process, especially when you consider how easy it is to create a Windows service. Most of the attempts that I've seen at doing so have been full of problems.</p>
http://stackoverflow.com/questions/259798/parameterized-create-view-possible/259885#2598850Answer by Bart for Parameterized CREATE VIEW possible?Bart2008-11-03T20:41:51Z2008-11-03T20:41:51Z<p>It looks to me like you are trying to create a dynamic query using parameters, which is not how a parameterized query is intended to work. They do not simply get concatenated into the string. </p>
<p>If what you are trying to prevent is SQL injection, what I would do is validate that the view name only contains alphanumerics and no T-SQL keywords. I would alos be very careful about dymanically creating the body.</p>
http://stackoverflow.com/questions/166468/is-it-worthwhile-to-write-a-programming-tutorial-book/166478#1664780Answer by Bart for Is it worthwhile to write a programming tutorial book?Bart2008-10-03T11:50:52Z2008-10-03T11:50:52Z<p>My advice would be to ask yourself "What will my book offer that others do not" If you believe that you have an angle or approach that unique and helpful then I would say go for it. But if you struggle to answer that question then your effort would likely be overshadowed by the wash of all the other material on the subject.</p>
http://stackoverflow.com/questions/118490/rtf-control-for-net-1-1-windows/118715#1187151Answer by Bart for RTF control for .Net 1.1 WindowsBart2008-09-23T01:54:39Z2008-09-23T01:54:39Z<p>We've used the <a href="http://www.subsystems.com/tewf.htm" rel="nofollow">TE EDIT</a> Control from Sub Systems fairly extensively. We evaluated a lot of controls and found this one to be the best by far. The API is a little archaic but the tech support was very responsive and we were able to get it to do whatever we needed it to do. </p>
http://stackoverflow.com/questions/117128/ms-ssrs-report-builder-semantic-query-execution-failed/117817#1178171Answer by Bart for MS SSRS Report Builder: Semantic query execution failed.?Bart2008-09-22T21:39:40Z2008-09-22T21:39:40Z<p>Try Creating a view that either does not include that column. Once you have done that recreate your data source views and model to be based on this view instead of the raw table and retry creating the report in Report Builder</p>
http://stackoverflow.com/questions/60121/silverlight-install-base-how-big-is-it/117773#1177731Answer by Bart for Silverlight Install Base - How big is it?Bart2008-09-22T21:31:58Z2008-09-22T21:31:58Z<p>While in general I support the idea of developing a site using silverlight and feel that that, depending on your audience, you should not have too much trouble getting users to download the plug in I would caution you against assuming that Microsoft will release the plugin built into IE or as a part of windows update.</p>
<p>I have had two separate Microsoft Technology Evangelists tell me that the company is reluctant to do that due to Anti-Trust reasons.</p>
<p>This was over a year ago and their strategy has probably evolved since then, but it enough to make me not count on that as an option for greater market penetration.</p>
http://stackoverflow.com/questions/108403/solutions-for-insert-or-update-on-sql-server/108516#1085165Answer by Bart for Solutions for INSERT OR UPDATE on SQL ServerBart2008-09-20T15:39:39Z2008-09-20T15:39:39Z<p>In SQL 2008 you can use the MERGE statement</p>
http://stackoverflow.com/questions/107076/does-wcf-play-well-with-java/108229#1082295Answer by Bart for Does WCF play well with Java?Bart2008-09-20T14:01:38Z2008-09-20T14:01:38Z<p>You will need to use one of the HTTP bindings. The TCP binding requires WCF to be on both sides.</p>
http://stackoverflow.com/questions/102600/learning-anaysis-services/106790#1067901Answer by Bart for Learning Anaysis ServicesBart2008-09-20T02:13:09Z2008-09-20T02:13:09Z<p>My personal favorite book on the topic is <a href="http://rads.stackoverflow.com/amzn/click/0672327821" rel="nofollow" title="Microsoft SQL Server 2005 Analysis Services">Microsoft SQL Server 2005 Analysis Services</a></p>
<p>Mosha Pasumansky's blog is a great resource once you start learning more about the technology and MDX</p>
<p><a href="http://sqlblog.com/blogs/mosha/default.aspx" rel="nofollow">http://sqlblog.com/blogs/mosha/default.aspx</a></p>
http://stackoverflow.com/questions/104951/web-designer-for-vs-net-reportviewer/105723#1057231Answer by Bart for Web designer for VS.NET ReportViewerBart2008-09-19T21:19:52Z2008-09-19T21:19:52Z<p>The best that I've seen is RsInteract thier url is <a href="http://www.rsinteract.com/" rel="nofollow">http://www.rsinteract.com/</a></p>
http://stackoverflow.com/questions/104203/anyone-know-of-any-good-database-diff-tools/104221#1042211Answer by Bart for Anyone know of any good Database Diff tools?Bart2008-09-19T18:16:52Z2008-09-19T18:16:52Z<p>As far as I'm concerend you cannot beat Red-Gate SQL compare. They have a 14 day trial so you can check out what the product can do. They also have a data compare product that will compare the data contents. </p>
http://stackoverflow.com/questions/98122/sql-server-reporting-services-shows-dtd-prohibited-in-xml-document-error/98558#985581Answer by Bart for SQL Server Reporting Services shows DTD prohibited in XML document errorBart2008-09-19T01:11:43Z2008-09-19T01:11:43Z<p>Check to see if your reporting server website has the correct local path folder. You might need to do an iisreset if it is not correct. </p>
http://stackoverflow.com/questions/88710/reporting-services-deployment4Reporting Services DeploymentBart2008-09-17T23:35:07Z2008-09-18T09:04:57Z
<p>I need to create a repeatable process for deploying SQL Server Reporting Services reports. I am not in favor of using Visual Studio and or Business Development Studio to do this. The rs.exe method of scripting deployments also seems rather clunky. Does anyone have a very elegant way that they have been able to deploy reports. The key here is that I want the process to be completely automated.</p>
http://stackoverflow.com/questions/978734/ssrs-2008-word-export-doesnt-print-to-landscape/978781#978781Comment by Bart on SSRS 2008 word export doesn't print to landscapeBart2009-06-11T14:15:53Z2009-06-11T14:15:53ZSetting the report to landscape automatically changes the paper size to 11" Wide X 8.5" high. If I manually change these values back the orientation is reset to portrait.http://stackoverflow.com/questions/474289/static-port-assignment-in-sql-server-2008-does-not-save/474370#474370Comment by Bart on Static Port Assignment in SQL Server 2008 Does not saveBart2009-01-23T20:29:39Z2009-01-23T20:29:39ZIPALL is what I'm usinghttp://stackoverflow.com/questions/421247/flowpanel-vertical-scroll/421268#421268Comment by Bart on FlowPanel Vertical ScrollBart2009-01-15T21:04:40Z2009-01-15T21:04:40ZI agree with Joe, the name of that attribute is confusinghttp://stackoverflow.com/questions/88710/reporting-services-deployment/88722#88722Comment by Bart on Reporting Services DeploymentBart2008-09-17T23:40:50Z2008-09-17T23:40:50ZOh I agree. The issue is that I really want the deployment to be completely automated.