User jms - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:31:50Zhttp://stackoverflow.com/feeds/user/1293http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1652422/user-support-strategies-for-web-apps-email-forms-and-screen-captures0User support strategies for web apps: Email, forms and screen capturesjms2009-10-30T21:28:02Z2009-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#15836460Answer by jms for SQL: Alias Column Name for Use in CASE Statementjms2009-10-18T00:58:49Z2009-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-aspx3In ASP.NET, what are the different ways to inline code in the .aspx?jms2008-08-26T14:35:45Z2009-10-09T22:03:08Z
<p>Can I get a 'when to use' for these and others? </p>
<pre><code><% %>
<%# EVAL() %>
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/18952/what-is-your-reporting-tool-of-choice11What is your reporting tool of choice?jms2008-08-20T22:01:16Z2009-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#14527022Answer by jms for Are there any development issues with regards to a specific version of Windows 7?jms2009-09-21T03:03:08Z2009-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-class0How do I get <jsp:include /> functionality in a standard class?jms2009-08-27T20:38:38Z2009-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><jsp:include /></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-report0How to list BO XIR2 universe objects used in a webi report?jms2009-04-14T14:06:10Z2009-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#12113651Answer by jms for ASP.NET has no access to IIS metabasejms2009-07-31T08:48:13Z2009-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#11753010Answer by jms for How to do a focus group for a websitejms2009-07-23T23:12:39Z2009-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#10450711Answer by jms for Go to specific line number on a page using # but not in urljms2009-06-25T17:04:57Z2009-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#10208580Answer by jms for "[MySQL] Joins are evil" - Cal Hendersonjms2009-06-20T03:18:49Z2009-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#10070141Answer by jms for Best ASP.NET reporting engine with custom reports creation abilityjms2009-06-17T13:27:21Z2009-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#10069820Answer by jms for SQL - Query by Date Rangejms2009-06-17T13:21:16Z2009-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#10041583Answer by jms for Comparing folder structure in two environmentsjms2009-06-16T21:54:31Z2009-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#10041191Answer by jms for Selecting the top n rows within a group by clausejms2009-06-16T21:45:53Z2009-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 <= 5
</code></pre>
http://stackoverflow.com/questions/988735/microsoft-access-is-a-mere-file-or-data-base-server/988792#9887922Answer by jms for Microsoft access is a mere file or data-base serverjms2009-06-12T20:08:05Z2009-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#9395000Answer by jms for Interface design? Can I do it iteratively? How should I handle changes to the interface?jms2009-06-02T13:24:35Z2009-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-widget4JQuery & Objects, trying to make a lightweight widgetjms2008-09-07T07:11:51Z2009-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 = $("<select></select>");
$select.addOption = function(value,text){
$(this).append($("<option></option>").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 $("<select></select>");
}
$selectX.prototype.addOption() = function(value,text){
$(this).append($("<option></option>").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($("<option></option>").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#8765371Answer by jms for trying to run a process from an asp.net applicationjms2009-05-18T07:08:23Z2009-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#8634822Answer by jms for From Computer Scientist to Software Engineer jms2009-05-14T13:58:56Z2009-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 & 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#8028170Answer by jms for TSQL equivalent of an MS Access Crosstab queryjms2009-04-29T15:08:42Z2009-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#7728980Answer by jms for SQL query that distinguishes between ß and ssjms2009-04-21T14:39:50Z2009-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#7618450Answer by jms for Best Way to Handle SQL Parameters?jms2009-04-17T19:27:14Z2009-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#7538200Answer by jms for How can SHA encryption be possible?jms2009-04-15T21:31:04Z2009-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#7538090Answer by jms for T-SQL field parsingjms2009-04-15T21:27:36Z2009-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#7536220Answer by jms for Implementing and applying a string split in T-SQLjms2009-04-15T20:41:24Z2009-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#7522610Answer by jms for What is the best way to query data from multilpe tables and databases?jms2009-04-15T15:32:42Z2009-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#72606411Answer by jms for What do fellow .NET developers think about the conditional operator?jms2009-04-07T14:37:52Z2009-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#7219520Answer by jms for Is physical file fragmentation of the mdf file an issue?jms2009-04-06T15:22:56Z2009-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#7147270Answer by jms for Dealing with duplicated data in SQL Serverjms2009-04-03T16:36:50Z2009-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-sqlComment by jms on MDX performance vs. T-SQLjms2009-11-09T04:12:59Z2009-11-09T04:12:59Zrelated: <a href="http://stackoverflow.com/questions/42483/simulated-olap/42504#42504" rel="nofollow" title="simulated olap">stackoverflow.com/questions/42483/…</a>http://stackoverflow.com/questions/1639784/why-is-http-dd-a-valid-url/1639809#1639809Comment by jms on Why is 'http://dd ' a valid URL?jms2009-10-28T20:36:43Z2009-10-28T20:36:43ZYou 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#1590341Comment by jms on SQL Grouping around gapsjms2009-10-19T19:15:16Z2009-10-19T19:15:16ZTime 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/…</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-stringComment by jms on Ultimate Website Testing Stringjms2009-09-25T16:54:27Z2009-09-25T16:54:27Zwhere is your snowman? ☃http://stackoverflow.com/questions/1343621/how-do-i-get-jspinclude-functionality-in-a-standard-class/1343650#1343650Comment by jms on How do I get <jsp:include /> functionality in a standard class?jms2009-08-27T22:08:22Z2009-08-27T22:08:22ZThe 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-clauseComment by jms on Subquery vs Traditional join with WHERE clause?jms2009-08-13T13:36:19Z2009-08-13T13:36:19ZIf 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/…</a>http://stackoverflow.com/questions/1242031/is-it-possible-to-let-the-iphone-system-time-run-faster-for-a-moment/1242519#1242519Comment by jms on Is it possible to let the iPhone system time run faster for a moment?jms2009-08-07T01:59:16Z2009-08-07T01:59:16Z+1 on the verbose.http://stackoverflow.com/questions/1193774/reporting-tools-and-architectureComment by jms on Reporting tools and architecturejms2009-07-28T15:04:26Z2009-07-28T15:04:26ZAre you looking to build a data warehouse?http://stackoverflow.com/questions/1098294/extreme-slow-pc-if-logged-on-as-domain-user-remotelyComment by jms on Extreme slow PC if logged on as domain user remotelyjms2009-07-08T14:08:30Z2009-07-08T14:08:30ZTry SuperUser.comhttp://stackoverflow.com/questions/747726/how-to-list-bo-xir2-universe-objects-used-in-a-webi-report/1015922#1015922Comment by jms on How to list BO XIR2 universe objects used in a webi report?jms2009-06-19T01:13:28Z2009-06-19T01:13:28ZYea I figure they don't provide the report objects in their SDK to make it more difficult for automated migration to other products. :phttp://stackoverflow.com/questions/1014993/in-a-data-warehouse-scenario-is-there-any-disadvantage-to-using-withnolockComment by jms on In a Data Warehouse scenario is there any disadvantage to using WITH(NOLOCK)jms2009-06-18T23:18:22Z2009-06-18T23:18:22Zrelated. <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/…</a>http://stackoverflow.com/questions/1014993/in-a-data-warehouse-scenario-is-there-any-disadvantage-to-using-withnolock/1015663#1015663Comment by jms on In a Data Warehouse scenario is there any disadvantage to using WITH(NOLOCK)jms2009-06-18T23:16:20Z2009-06-18T23:16:20Z+1 for setting isolation level but "with nolock" 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-encodedComment by jms on How secure is a HTTP GET when the data is URL Encoded?jms2009-06-17T17:54:41Z2009-06-17T17:54:41ZScores 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#988792Comment by jms on Microsoft access is a mere file or data-base serverjms2009-06-12T20:37:16Z2009-06-12T20:37:16ZI'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#980476Comment by jms on Is it possible to easily detect or predict a Primary Key violation in SQL?jms2009-06-11T12:30:52Z2009-06-11T12:30:52ZThis method is recommended in "The Art of SQL". <a href="http://www.amazon.com/Art-SQL-Stephane-Faroult/dp/0596008945" rel="nofollow">amazon.com/Art-SQL-Stephane-Faroult/dp/…</a>