User jms - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:31:50Z http://stackoverflow.com/feeds/user/1293 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1652422/user-support-strategies-for-web-apps-email-forms-and-screen-captures 0 User support strategies for web apps: Email, forms and screen captures jms 2009-10-30T21:28:02Z 2009-10-30T21:31:41Z <p>Our company supplies a web app that ~500 users uses about once a week. The app is hosted by us as a third party and users are located across the country and working for one company. </p> <p>I am looking at a new requirement for screen capture functionality to aid support. It is unlikely that the users are local administrator or are interesting in installing a desktop solution. This assumption will be confirmed.</p> <p>The questions could be about the business or the application.</p> <p>In an effort to minimize the back and forth with sponsors and PMs I try to show some mock ups and or real world examples of common solutions I could implement.</p> <p>Print Screen and an email link is already possible but probably an unknown to the user. I'll let the project sponsor know about this standard ability.</p> <p>My current idea is to provide a button or key combo to the user that will capture the current page's HTML, ask for some addition text and send it over the wire The support specialist would receive a link where the captured HTML would be rendered. I'm sure there are some edge cases and encoding headaches I'll have to deal with but it sounds reasonable.</p> <p>What are some other ways to aid the interaction between support staff and end users in the web?<br /> Are there any public sites or projects that implement 'my' current idea or similar that I could use as an example?</p> <p>Thank you in advance for helping me solidify my requirements.</p> http://stackoverflow.com/questions/1583609/sql-alias-column-name-for-use-in-case-statement/1583646#1583646 0 Answer by jms for SQL: Alias Column Name for Use in CASE Statement jms 2009-10-18T00:58:49Z 2009-10-18T03:17:39Z <p>I use CTEs to help compose complicated SQL queries but not all RDBMS' support them. You can think of them as query scope views. Here is an example in t-sql on SQL server.</p> <pre><code>With localView1 as ( select c1, c2, c3, c4, ((c2-c4)*(3))+c1 as "complex" from realTable1) , localView2 as ( select case complex WHEN 0 THEN 'Empty' ELSE 'Not Empty' end as formula1, complex * complex as formula2 from localView1) select * from localView2 </code></pre> http://stackoverflow.com/questions/28219/in-asp-net-what-are-the-different-ways-to-inline-code-in-the-aspx 3 In ASP.NET, what are the different ways to inline code in the .aspx? jms 2008-08-26T14:35:45Z 2009-10-09T22:03:08Z <p>Can I get a 'when to use' for these and others? </p> <pre><code>&lt;% %&gt; &lt;%# EVAL() %&gt; </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/18952/what-is-your-reporting-tool-of-choice 11 What is your reporting tool of choice? jms 2008-08-20T22:01:16Z 2009-09-27T17:40:58Z <p>Every project invariably needs some type of reporting functionality. From a foreach loop in your language of choice to a full blow BI platform. </p> <blockquote> <p>To get the job done what tools, widgets, platforms has the group used with success, frustration and failure?</p> </blockquote> http://stackoverflow.com/questions/1452689/are-there-any-development-issues-with-regards-to-a-specific-version-of-windows-7/1452702#1452702 2 Answer by jms for Are there any development issues with regards to a specific version of Windows 7? jms 2009-09-21T03:03:08Z 2009-09-21T03:03:08Z <p>from hanselman: <a href="http://www.hanselman.com/blog/Top10TipsWorkingDevelopersShouldKnowAboutWindows7.aspx" rel="nofollow">http://www.hanselman.com/blog/Top10TipsWorkingDevelopersShouldKnowAboutWindows7.aspx</a></p> http://stackoverflow.com/questions/1343621/how-do-i-get-jspinclude-functionality-in-a-standard-class 0 How do I get <jsp:include /> functionality in a standard class? jms 2009-08-27T20:38:38Z 2009-08-27T20:45:59Z <p>Background: Migrating an application from ball of mud to MVC. Many classes contain HTML building methods. Refactoring as I add features, I'm not looking for a complete rewrite. </p> <p>I'd like to build some smaller views but need to render them in between some serious string building.</p> <p>To compose my views is a jsp I would use <code>&lt;jsp:include /&gt;</code> tags. Is there similiar functionality I can call from a class? I'm looking at java.net.URL but it will require a little plumbing. The class already depends on the request object. </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/747726/how-to-list-bo-xir2-universe-objects-used-in-a-webi-report 0 How to list BO XIR2 universe objects used in a webi report? jms 2009-04-14T14:06:10Z 2009-08-12T22:59:12Z <p>How to list universe objects from a webi report using the Business Objects SDK for XIR2?<br /> Is there is an automated way to do it without the sdk? </p> <p>With the SDK I've been able iterate through webi report and universe collections but do not see a native way to retrieve either the query objects or the report query.</p> http://stackoverflow.com/questions/1211347/asp-net-has-no-access-to-iis-metabase/1211365#1211365 1 Answer by jms for ASP.NET has no access to IIS metabase jms 2009-07-31T08:48:13Z 2009-07-31T08:48:13Z <p>try running aspnet_regiis -i from the dotnet directory. It has a way of fixing things.</p> http://stackoverflow.com/questions/1175300/how-to-do-a-focus-group-for-a-website/1175301#1175301 0 Answer by jms for How to do a focus group for a website jms 2009-07-23T23:12:39Z 2009-07-24T00:53:38Z <p>Grab your laptop and setup shop in a well trafficked area and conduct some impromptu "<a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">hallway usability tests</a>".</p> http://stackoverflow.com/questions/1045018/go-to-specific-line-number-on-a-page-using-but-not-in-url/1045071#1045071 1 Answer by jms for Go to specific line number on a page using # but not in url jms 2009-06-25T17:04:57Z 2009-06-25T17:04:57Z <p>I don't think you need anchors for this. You can capture the scroll position as a post a request variable and set it back with JavaScript in the page load.</p> <p>The second option in the post is not specific to asp.net.<br /> <a href="http://www.4guysfromrolla.com/articles/111704-1.aspx" rel="nofollow">http://www.4guysfromrolla.com/articles/111704-1.aspx</a></p> http://stackoverflow.com/questions/1020847/mysql-joins-are-evil-cal-henderson/1020858#1020858 0 Answer by jms for "[MySQL] Joins are evil" - Cal Henderson jms 2009-06-20T03:18:49Z 2009-06-20T03:18:49Z <p>Joins are a cost. You still join or group the data together and pay for it but you defer the cost to the cheaper application tier where it's easier to scale.</p> http://stackoverflow.com/questions/1006979/best-asp-net-reporting-engine-with-custom-reports-creation-ability/1007014#1007014 1 Answer by jms for Best ASP.NET reporting engine with custom reports creation ability jms 2009-06-17T13:27:21Z 2009-06-17T13:27:21Z <p>SQL Reporting Services. They have a web tool to build ad-hoc reports that is as good as any other. </p> <p>The general problem with ad hoc reporting is that the "thing" the user is trying to do is either beyond the tool or beyond the user and you have to do it any ways, and as a programmer SSRS is a better environment.</p> http://stackoverflow.com/questions/1006925/sql-query-by-date-range/1006982#1006982 0 Answer by jms for SQL - Query by Date Range jms 2009-06-17T13:21:16Z 2009-06-17T13:21:16Z <p>In MS-SQL Server events happening after 2009-06-16 at midnight will not be included.</p> http://stackoverflow.com/questions/1004030/comparing-folder-structure-in-two-environments/1004158#1004158 3 Answer by jms for Comparing folder structure in two environments jms 2009-06-16T21:54:31Z 2009-06-16T21:54:31Z <p>One windows. Use your favorite diff tool on the files generated from this cmd.</p> <p>Run this from the folders you wish to compare.<br /> c:\somefolder>dir /s > searchResult.txt</p> http://stackoverflow.com/questions/1004079/selecting-the-top-n-rows-within-a-group-by-clause/1004119#1004119 1 Answer by jms for Selecting the top n rows within a group by clause jms 2009-06-16T21:45:53Z 2009-06-16T21:45:53Z <p>Row_Number can also be used - <a href="http://msdn.microsoft.com/en-us/library/ms186734.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms186734.aspx</a></p> <pre><code>WITH foo as ( Select * ,ROW_NUMBER() OVER(PARTITION BY instrument ORDER BY bar_dttm desc) as rank from bar ) select * from foo where rank &lt;= 5 </code></pre> http://stackoverflow.com/questions/988735/microsoft-access-is-a-mere-file-or-data-base-server/988792#988792 2 Answer by jms for Microsoft access is a mere file or data-base server jms 2009-06-12T20:08:05Z 2009-06-12T20:08:05Z <p>Access does not provide networked connectivity beyond a file share. There is no "Access" port.</p> http://stackoverflow.com/questions/937380/interface-design-can-i-do-it-iteratively-how-should-i-handle-changes-to-the-in/939500#939500 0 Answer by jms for Interface design? Can I do it iteratively? How should I handle changes to the interface? jms 2009-06-02T13:24:35Z 2009-06-02T13:24:35Z <p>If your interface is part of code that is shared with other projects and teams, listen to Cheeso. But if your interface is part of a private project and you have access to all the change points then you probably didn't need interfaces to begin with but go ahead and change them.</p> http://stackoverflow.com/questions/48215/jquery-objects-trying-to-make-a-lightweight-widget 4 JQuery & Objects, trying to make a lightweight widget jms 2008-09-07T07:11:51Z 2009-05-26T15:13:16Z <p>Trying to make a make generic select "control" that I can dynamically add elements to, but I am having trouble getting functions to work right.</p> <p>This is what I started with.</p> <pre><code>$select = $("&lt;select&gt;&lt;/select&gt;"); $select.addOption = function(value,text){ $(this).append($("&lt;option&gt;&lt;/option&gt;").val(value).text(text)); }; </code></pre> <p>This worked fine alone but anytime <code>$select</code> is <code>.clone(true)</code>'ed the <code>addOption()</code> function is lost. </p> <p>This is my object approach but still the function does not work.</p> <pre><code>function $selectX() { return $("&lt;select&gt;&lt;/select&gt;"); } $selectX.prototype.addOption() = function(value,text){ $(this).append($("&lt;option&gt;&lt;/option&gt;").val(value).text(text)); }; </code></pre> <p>Hack solution is to add the function manually after creation:</p> <pre><code>$nameSelect= new $selectX; $nameSelect.addOption = function(value,text){ $(this).append($("&lt;option&gt;&lt;/option&gt;").val(value).text(text)); }; </code></pre> <p>Am I barking up the wrong tree?</p> http://stackoverflow.com/questions/876504/trying-to-run-a-process-from-an-asp-net-application/876537#876537 1 Answer by jms for trying to run a process from an asp.net application jms 2009-05-18T07:08:23Z 2009-05-18T07:08:23Z <p>Try creating a new app pool with a a new admin account. If that works remove the user from the admin group and create a new group with the necessary permissions for the app.</p> http://stackoverflow.com/questions/863435/from-computer-scientist-to-software-engineer/863482#863482 2 Answer by jms for From Computer Scientist to Software Engineer jms 2009-05-14T13:58:56Z 2009-05-14T13:58:56Z <p>I really liked this book when moving from asp.net to jsp <a href="http://www.headfirstlabs.com/books/hfsvlt/" rel="nofollow">Head First Servlets &amp; JSP, Second Edition</a>.</p> <p>Great primer for someone who knows programming and the web but not much about how jsp, servlets and mvc work together.</p> http://stackoverflow.com/questions/802630/tsql-equivalent-of-an-ms-access-crosstab-query/802817#802817 0 Answer by jms for TSQL equivalent of an MS Access Crosstab query jms 2009-04-29T15:08:42Z 2009-04-29T15:08:42Z <p>You can also use the <a href="http://stackoverflow.com/questions/17194/sql-query-to-compare-product-sales-by-month/17290#17290">CASE</a> statement but your reporting tool should be able to do this for you ( dynamically! ) with the matrix/pivot/crosstab template.</p> http://stackoverflow.com/questions/772763/sql-query-that-distinguishes-between-ssand-ss/772898#772898 0 Answer by jms for SQL query that distinguishes between ß and ss jms 2009-04-21T14:39:50Z 2009-04-21T14:39:50Z <p>Another workaround for this specific case. </p> <p><a href="http://connect.microsoft.com/SQLServer/feedback/Workaround.aspx?FeedbackID=341130" rel="nofollow">http://connect.microsoft.com/SQLServer/feedback/Workaround.aspx?FeedbackID=341130</a></p> http://stackoverflow.com/questions/761830/best-way-to-handle-sql-parameters/761845#761845 0 Answer by jms for Best Way to Handle SQL Parameters? jms 2009-04-17T19:27:14Z 2009-04-17T19:27:14Z <p>If your on SQL 2008 you can use merge to replace insert / update juggling. Sometimes called upsert.</p> http://stackoverflow.com/questions/753801/how-can-sha-encryption-be-possible/753820#753820 0 Answer by jms for How can SHA encryption be possible? jms 2009-04-15T21:31:04Z 2009-04-15T21:31:04Z <p>Nice observation. Short answer it can't and leads to collisions which can be exploited in <a href="http://en.wikipedia.org/wiki/Birthday%5Fattack" rel="nofollow">birthday attacks</a>.</p> http://stackoverflow.com/questions/753774/t-sql-field-parsing/753809#753809 0 Answer by jms for T-SQL field parsing jms 2009-04-15T21:27:36Z 2009-04-15T21:27:36Z <pre><code>select CASE (CASE WHEN substring(field,1,1) between 0 and 9 then 'N' Else 'C' END) WHEN 'N' THEN CASE field WHEN ... THEN ... WHEN ... THEN ... END WHEN 'C' THEN CASE field WHEN ... THEN ... WHEN ... THEN ... END END </code></pre> http://stackoverflow.com/questions/753582/implementing-and-applying-a-string-split-in-t-sql/753622#753622 0 Answer by jms for Implementing and applying a string split in T-SQL jms 2009-04-15T20:41:24Z 2009-04-15T20:41:24Z <p>You should keep your arrays as rows but if I understand your question I think this will work.</p> <pre><code>SELECT Bay From TABLE join Info_Step on B_Numbers like '%'+ uid +'%' where Info_Step.uid = 'number' </code></pre> <p>This query will do a full table scan because of the like operator.</p> http://stackoverflow.com/questions/752123/what-is-the-best-way-to-query-data-from-multilpe-tables-and-databases/752261#752261 0 Answer by jms for What is the best way to query data from multilpe tables and databases? jms 2009-04-15T15:32:42Z 2009-04-15T15:32:42Z <p>Sounds like your stuck somewhere between a multi and single tenant database shema. Specifically your storing it as "light"multi-tenant (separate tables vs separate databases) but querying it as single-tenant, one query to rule them all. </p> <p>In the short term have your data access layer dynamically pick the table to query and not union everything together for one uber query.</p> <p>In the long term pick one approach and stick too it. One database and one table or many databases.</p> <p>Here are some posts on the subject.</p> <p><a href="http://stackoverflow.com/questions/13348/what-are-the-advantages-of-using-a-single-database-for-each-client">http://stackoverflow.com/questions/13348/what-are-the-advantages-of-using-a-single-database-for-each-client</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/aa479086.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa479086.aspx</a></p> http://stackoverflow.com/questions/725973/what-do-fellow-net-developers-think-about-the-conditional-operator/726064#726064 11 Answer by jms for What do fellow .NET developers think about the conditional operator? jms 2009-04-07T14:37:52Z 2009-04-07T14:37:52Z <p>Comic book guy says. "Worst use of ternary operator ever."</p> http://stackoverflow.com/questions/719849/is-physical-file-fragmentation-of-the-mdf-file-an-issue/721952#721952 0 Answer by jms for Is physical file fragmentation of the mdf file an issue? jms 2009-04-06T15:22:56Z 2009-04-06T15:22:56Z <p>A good way to avoid this is to <strong>not</strong> rely on autogrow. Give the MDF room to breath.</p> http://stackoverflow.com/questions/714579/dealing-with-duplicated-data-in-sql-server/714727#714727 0 Answer by jms for Dealing with duplicated data in SQL Server jms 2009-04-03T16:36:50Z 2009-04-03T16:36:50Z <p>I am confused about the actual problem? Are you having problems with performance or is 5 gigs really that expensive? If performance is the problem a smaller table may not be the solution. I would investigate changing FSPath to char(256). It will take up more space but your data will line up better on the hard drive and <em>should</em> help performance. I would also support changing the schema as you described but it if it's not feasible because consumers can't/won't change code you may have to build some test to show that change is worth it.</p> http://stackoverflow.com/questions/1672754/mdx-performance-vs-t-sql Comment by jms on MDX performance vs. T-SQL jms 2009-11-09T04:12:59Z 2009-11-09T04:12:59Z related: <a href="http://stackoverflow.com/questions/42483/simulated-olap/42504#42504" rel="nofollow" title="simulated olap">stackoverflow.com/questions/42483/&hellip;</a> http://stackoverflow.com/questions/1639784/why-is-http-dd-a-valid-url/1639809#1639809 Comment by jms on Why is 'http://dd ' a valid URL? jms 2009-10-28T20:36:43Z 2009-10-28T20:36:43Z You may want to cache at least common results. Google.com does not need to be checked every time, ect. Perhaps premature but something to keep an eye on and fun to code up. http://stackoverflow.com/questions/1590166/sql-grouping-around-gaps/1590341#1590341 Comment by jms on SQL Grouping around gaps jms 2009-10-19T19:15:16Z 2009-10-19T19:15:16Z Time tables are common in business intelligence applications. Here is how to link from MSDN <a href="http://msdn.microsoft.com/en-us/library/ms174832.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>. Once you use a good one you won't mind having an 'extra' table in your db. http://stackoverflow.com/questions/1477553/ultimate-website-testing-string Comment by jms on Ultimate Website Testing String jms 2009-09-25T16:54:27Z 2009-09-25T16:54:27Z where is your snowman? ☃ http://stackoverflow.com/questions/1343621/how-do-i-get-jspinclude-functionality-in-a-standard-class/1343650#1343650 Comment by jms on How do I get <jsp:include /> functionality in a standard class? jms 2009-08-27T22:08:22Z 2009-08-27T22:08:22Z The Class is a POJO with an awesome getSomeSeriousHTML() method. It's looks like an inside out jsp minus the Servlet interface. Thanks and happy hunting. http://stackoverflow.com/questions/1271965/subquery-vs-traditional-join-with-where-clause Comment by jms on Subquery vs Traditional join with WHERE clause? jms 2009-08-13T13:36:19Z 2009-08-13T13:36:19Z If your looking for clarity in more complicated sub queries check out CTE's. <a href="http://msdn.microsoft.com/en-us/library/ms190766.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1242031/is-it-possible-to-let-the-iphone-system-time-run-faster-for-a-moment/1242519#1242519 Comment by jms on Is it possible to let the iPhone system time run faster for a moment? jms 2009-08-07T01:59:16Z 2009-08-07T01:59:16Z +1 on the verbose. http://stackoverflow.com/questions/1193774/reporting-tools-and-architecture Comment by jms on Reporting tools and architecture jms 2009-07-28T15:04:26Z 2009-07-28T15:04:26Z Are you looking to build a data warehouse? http://stackoverflow.com/questions/1098294/extreme-slow-pc-if-logged-on-as-domain-user-remotely Comment by jms on Extreme slow PC if logged on as domain user remotely jms 2009-07-08T14:08:30Z 2009-07-08T14:08:30Z Try SuperUser.com http://stackoverflow.com/questions/747726/how-to-list-bo-xir2-universe-objects-used-in-a-webi-report/1015922#1015922 Comment by jms on How to list BO XIR2 universe objects used in a webi report? jms 2009-06-19T01:13:28Z 2009-06-19T01:13:28Z Yea I figure they don't provide the report objects in their SDK to make it more difficult for automated migration to other products. :p http://stackoverflow.com/questions/1014993/in-a-data-warehouse-scenario-is-there-any-disadvantage-to-using-withnolock Comment by jms on In a Data Warehouse scenario is there any disadvantage to using WITH(NOLOCK) jms 2009-06-18T23:18:22Z 2009-06-18T23:18:22Z related. <a href="http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005" rel="nofollow" title="diagnosing deadlocks in sql server 2005">stackoverflow.com/questions/20047/&hellip;</a> http://stackoverflow.com/questions/1014993/in-a-data-warehouse-scenario-is-there-any-disadvantage-to-using-withnolock/1015663#1015663 Comment by jms on In a Data Warehouse scenario is there any disadvantage to using WITH(NOLOCK) jms 2009-06-18T23:16:20Z 2009-06-18T23:16:20Z +1 for setting isolation level but &quot;with nolock&quot; is better than nothing. It's not a 10% thing as much as will it run or not thing. http://stackoverflow.com/questions/1008539/how-secure-is-a-http-get-when-the-data-is-url-encoded Comment by jms on How secure is a HTTP GET when the data is URL Encoded? jms 2009-06-17T17:54:41Z 2009-06-17T17:54:41Z Scores big in availability but a big 0 in integrity and confidentiality. <a href="http://en.wikipedia.org/wiki/Information_security" rel="nofollow">en.wikipedia.org/wiki/Information_security</a> http://stackoverflow.com/questions/988735/microsoft-access-is-a-mere-file-or-data-base-server/988792#988792 Comment by jms on Microsoft access is a mere file or data-base server jms 2009-06-12T20:37:16Z 2009-06-12T20:37:16Z I'm pretty sure there is a jet ODBC driver to flat csv files. http://stackoverflow.com/questions/980393/is-it-possible-to-easily-detect-or-predict-a-primary-key-violation-in-sql/980476#980476 Comment by jms on Is it possible to easily detect or predict a Primary Key violation in SQL? jms 2009-06-11T12:30:52Z 2009-06-11T12:30:52Z This method is recommended in &quot;The Art of SQL&quot;. <a href="http://www.amazon.com/Art-SQL-Stephane-Faroult/dp/0596008945" rel="nofollow">amazon.com/Art-SQL-Stephane-Faroult/dp/&hellip;</a>