User Kristen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T09:59:14Zhttp://stackoverflow.com/feeds/user/65703http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1839677/which-javscript-library-would-you-suggest-in-asp-net/1839697#18396970Answer by Kristen for Which Javscript library would you suggest in asp.net?Kristen2009-12-03T12:53:06Z2009-12-03T12:53:06Z<p>TO generate graphs and charts you might like to look at <a href="http://code.google.com/apis/chart/" rel="nofollow">http://code.google.com/apis/chart/</a></p>
http://stackoverflow.com/questions/1833088/what-gotchas-have-you-discovered-programming-sms-alerts1What Gotchas have you discovered programming SMS/Alerts?Kristen2009-12-02T14:04:53Z2009-12-03T08:17:56Z
<p>I am about to start building an SMS alerting function in my web application. The aim is to provide two services:</p>
<ol>
<li>Host pays - e.g. to send an SMS alerting users to the cancellation of an event</li>
<li>User pays - e.g. to alert that an Email has been sent with, say, details of a new event (apparently a requirement from users when they are away from their EMail systems!)</li>
</ol>
<p>I also figure that there will be other user-pays scenarios such as if they have secondary mobile phones that they want alerting as the Host will only want to pay for a single phone per user.</p>
<p>From my research:</p>
<ol>
<li><p>I can use a 3rd party SMS Gateway provider. Cost is about GBP 0.05 per message. I can either send an EMail to 999999999@TheGatewayProvider.com or I can use an HTTP request with suitable parameters in the URL.</p></li>
<li><p>I can send an EMail to the user's network provider (I believe this is only available in the USA)</p></li>
</ol>
<p><strong>EDIT</strong>: <em>There are variations on how the various providers will handle the From/Subject and Message, so presentation of actual message sent may be hard to predict.</em></p>
<ol>
<li>I can set up my own Gateway (which I think is way beyond my ability, and may give grief at our data centre!)</li>
</ol>
<p>It strikes me that:</p>
<p>EMail we send sometimes get delayed in my server's SMTP queue, let alone any downstream queues. Sending an email to the network provider's SMS gateway seems to often be treated as low priority.</p>
<p>Therefore HTTP to a 3rd party SMS Gateway provider should give me shortest latency (important for "This afternoons event is cancelled because of bad weather")</p>
<p>When I send SMS Text from my mobile occasionally they take days to arrive - I presume this is something we just have to live with?</p>
<p>Having said that we will also have low priority informational messages and sending these by cheapest route is attractive! so I am planning to allow users to enter an EMail address for such messages - the intention being that they will use the email address for their mobile phone company's SMS redirect service, or similar (i.e. the email address of a device, not an inbox).</p>
<p>I also wonder whether allowing the users to enter IM, Twitter or other such is likely to be well used and efficient in practice?</p>
<p>From the 3rd party gateways I have looked at it seems:</p>
<p>Some use higher grade networks than others, this may impact performance? (or is it just marketing hogwash?)</p>
<p>Some provide better feedback than others. I need to keep the arguments over billing - and exactly how many "credits" the client has used up - to a minimum; getting an answerback of "OK" / "Phone number does not exist" therefore strikes me as important. One provider I found creates a text log file daily that can be downloaded and which I could reconcile with my outgoing log.</p>
<p>I would appreciate your opinions and experiences on:</p>
<p>Users will enter their mobile numbers as they know them. Do I need to enforce +9912345... so that I get the country code too?</p>
<p>What happens if the mobile is foreign (I'm based in the UK) Does the recipient pay the international part? or does the gateway provider perhaps have local transmission services?</p>
<p>What do I need to do with non alpha characters? The UK Pound sign "£" and CR / LF spring to mind. If these are encoded might that cause a message right on the length limit to exceed it once encoded (such that I need to build this in to the validation of the message creation form). Are new lines CR+LF or will just CR do?</p>
<p>Do any gateways have simulations? such that I could test my application without incurring any actual costs of SMS texts.</p>
<p>I plan to log the mobile numbers of any failed attempts and flag the user's record so that the next time they login I can encourage them to correct the number.</p>
<p>Any other gotchas and suggestions you have would be much appreciated. Thanks.</p>
http://stackoverflow.com/questions/1776344/doubt-about-put-scripts-at-the-bottom-advice1Doubt about "Put SCRIPTs at the bottom" adviceKristen2009-11-21T18:41:33Z2009-11-22T12:45:41Z
<p>I have read the advice about putting SCRIPTs at the bottomm (e.g. <a href="http://stackoverflow.com/questions/383045/is-put-scripts-at-the-bottom-correct">http://stackoverflow.com/questions/383045/is-put-scripts-at-the-bottom-correct</a>) and I understand the concept.</p>
<p>However, I have a doubt.</p>
<p>If I have an OnClick even that calls a JS function that will fail if the javascript include file has not loaded. I could work around this, but its pretty convoluted.</p>
<p>The nub of my thinking is that after the first page has loaded the script will be cached in the client's browser, so after the first page it won't make any difference to performance where I put the SCRIPT include directive, but it may well make a difference to my OnClick event.</p>
<p>I can see that loading some huge Javascript library is going to be slow, on the first page, potentially causing some/many users to "click off". But for the second-page onwards is there any benefit in having scripts at the end of page?</p>
<p>I'd be grateful for any clarification in case I'm being really thick and overlooking something important; thanks.</p>
http://stackoverflow.com/questions/170827/do-you-validate-your-websites/1775095#17750951Answer by Kristen for Do you validate your websites?Kristen2009-11-21T10:15:16Z2009-11-21T10:15:16Z<blockquote>
<p>you ever had an instance where not
validating your site has hurt you or
your company?</p>
</blockquote>
<p>One of our clients was slated in the press for having non-conformant HTML. It was basically an article in a trade journal where some jumped-up "web consultant" was touting for work by publichsing an article comparing the web sites of leading companies [in that field] - well, that's my take on the matter!, but naturally our client wasn't happy that they were marked down for "poor quality HTML". Best as I can guess it (from looking at other sites in the article, and how they were "marked") all that had been done was to create a score based on the number of HTML Validtor errors.</p>
<p>I guess its fair to say that up until then we had been doing what another poster here mentioned: "Just make sure it renders correctly in all browsers". We did use HTML Validator, but only to look for goofy things that we had overlooked, not to be completely anal about it.</p>
<p>However, since this episode that policy has changed!</p>
http://stackoverflow.com/questions/1743861/grouping-dates-by-month-in-an-sql-server-query-stored-procedure/1743995#17439950Answer by Kristen for Grouping dates by month in an sql server query (stored procedure)Kristen2009-11-16T18:33:35Z2009-11-16T18:33:35Z<p>You could "Round" the date to the 1st of the month, and then GROUP BY on that. Similar to using DatePart, but you still have a valid date, so you can use a Date Range in the WHERE clause before or after doing the Grouping.</p>
<pre>
SELECT [Date] = DATEADD(Month, DATEDIFF(Month, 0, Start_Date), 0), -- 1st of the month
[Bookings] = COUNT(*)
FROM BookingRoomLink
GROUP BY DATEADD(Month, DATEDIFF(Month, 0, Start_Date), 0)
ORDER BY [Date]
</pre>
http://stackoverflow.com/questions/1736955/validating-all-entries-in-input-boxes/1737243#17372431Answer by Kristen for Validating all entries in Input Boxes.Kristen2009-11-15T11:01:23Z2009-11-15T11:01:23Z<p>If you don't want to use JQuery I described an alternative library in an earlier post
<a href="http://stackoverflow.com/questions/576631/what-javascript-library-to-use-for-client-side-form-checking/577633#577633">http://stackoverflow.com/questions/576631/what-javascript-library-to-use-for-client-side-form-checking/577633#577633</a></p>
<p>That allows you to just add attributes like REQUIRED or DATE to an <INPUT> tag.</p>
<p>It's a bit old-hat now, but we are still using it in production :)</p>
http://stackoverflow.com/questions/1737103/sql-optimizing-query-to-have-few-io-operations/1737224#17372240Answer by Kristen for SQL : Optimizing query to have few IO operationsKristen2009-11-15T10:46:23Z2009-11-15T10:46:23Z<p>Also, don't use SELECT *. You may be bringing back columns you aren't using - or someone may add a massive TEXT column in the future, which your application won't be expecting/using, and that will reduce the performance of your query further.</p>
<p>I think the change to use a JOIN could be as important in improving performance as the LIKE '%N%' issue - in your original syntax SQL is having to make a lot of correlated queries to get the Parent Product_Name and Description (unless the optimiser is smart enough to spot that ...)</p>
<p>In fact the LIKE issue may be mute - even if the Flag column is indexed I can't see SQL using it [for an EQUALS test] if the only values are Y and N and are evenly spread (if Flag = N is a very small proportion of the rows [i.e. highly selective] then the optimiser may use the index [by checking the Statistics for the index]). So if SQL has to do a full table scan anyway to solve Flag = 'N' then its not a lot more work to do Flag LIKE '%N%'</p>
<p>Performance will then be helped further by having an index on ParentItem and another on ItemID (which may be your Primary key anyway)</p>
<p>(My knowledge is only with MS SQL Server)</p>
http://stackoverflow.com/questions/578146/best-examples-of-crud-web-form-design5Best examples of CRUD Web Form DesignKristen2009-02-23T15:56:02Z2009-11-13T19:50:31Z
<p>I am looking to revamp our CRUD web forms and would appreciate any examples of good UI design.</p>
<p>We have lots of database tables that have minimal editing needs by the user - Country Codes, Tax codes, Product prices, and so on - and these all currently use a simple format for CRUD, but it was designed by developers and looks very bland, and quite possibly could have far better usability, and certainly a better design.</p>
<p>Our process is:</p>
<p>Find screen - which also has an ADD NEW button. Enter values for any parameters relevant to search for and press FIND button. Matching records displayed in a grid with an EDIT link. The corresponding Edit form allows CLONE, DELETE and SAVE.</p>
<p>Where appropriate an Edit form may display Child Records.</p>
<p>For very complex records / relationships the Edit form is replaced by a Record Card, which displays everything including the kitchen sink! and appropriate records / sub records have EDIT links.</p>
<p>Its functional, but uninspiring.</p>
<p>On an 80:20 basis the code is all mechanically generated, so re-generating it for a new metaphor shouldn't be too hard.</p>
<p>I like a lot of the UI in the <a href="http://demo-admin.magentocommerce.com/index.php/admin/" rel="nofollow">Magento eCommerce Admin</a> pages, but I would be interested in any other examples you can recommend</p>
http://stackoverflow.com/questions/1727137/sql-query-for-performing-radius-search-based-on-latitude-longitude/1730430#17304300Answer by Kristen for SQL Query for Performing Radius Search based on Latitude LongitudeKristen2009-11-13T16:43:33Z2009-11-13T16:43:33Z<blockquote>
<p>IS THERE ANYTHING WRONG With this
query?</p>
</blockquote>
<p>In my opinion the WHERE clause is going to be slow because of the maths involved, and the use of functions in the WHERE clause will prevent the database using an index to speed the query - so, in effect, you will examine every restaurant in the database, and perform the great-circle maths on every row, every time you make a query.</p>
<p>Personally I would calculate the TopLeft and BottomRight co-ordinates of a square (which only needs to be crudly calculated using pythagoras) with sides equal to the range you are looking for, and then perform the more complicated WHERE clause test on the smaller subset of records that are within that Lat/Long square.</p>
<p>With an Index on Lat & Long in the database the query</p>
<pre>
WHERE MyLat >= @MinLat AND MyLat <= @MaxLat
AND MyLong >= @MinLong AND MyLong <= @MaxLong
</pre>
<p>should be very efficient </p>
<p>(Please note that I have no knowledge of MySQL specifically, only of MS SQL)</p>
http://stackoverflow.com/questions/1729736/how-can-i-track-which-user-has-last-modified-the-stored-proc-in-sql-server-2005/1730121#17301210Answer by Kristen for How can I track which user has last modified the stored proc in sql server 2005+?Kristen2009-11-13T15:57:12Z2009-11-13T15:57:12Z<p>We have all our Sprocs in separate files (with version control etc.) - rather than just RightClick and Edit directly in the database!</p>
<p>We have this at the top of every SProc script</p>
<pre>
EXEC dbo.MyLogScriptRun 'MySProcName', '091113'
</pre>
<p>this creates an entry in a script logging table that MySproc was created and its version is 091113. We also log the currently logged on user, plus database and server name (which helps when a database is restored to another server and we wonder how MySproc got to be THAT version on THIS server!)</p>
<p>We also use this to check what version is installed on a specific client DB e.g. when diagnosing a problem, and as the basis of knowing what starting version to use (from version control) to deploy a fix; also for deplying an upgrade (so we can work out what SProcs are newer and need to be incorporated into a "release package")</p>
<p>Most of this you could do with DDL triggers (in SQL2005 onwards) but I'm not sure about being able to also store a version number.</p>
<p>We use this to log other scripts we run too - DDL manipulation scripts run during updates and so on.</p>
<p>The logging sproc is written so that executing</p>
<pre>
EXEC dbo.MyLogScriptRun 'MySProcName'
</pre>
<p>provides a list from the log. (i.e. I can highlight the first part of the line, excluding the version number, to get a list, or execute the whole line to create a log entry).</p>
http://stackoverflow.com/questions/1728048/removing-duplicate-field-entries-in-sql/1728089#1728089-1Answer by Kristen for Removing duplicate field entries in SQLKristen2009-11-13T09:17:35Z2009-11-13T09:17:35Z<p>If you have a Unique ID / Primary key on the table then:</p>
<pre>
DELETE FROM MyTable AS T1
WHERE MyID <
(
SELECT MAX(MyID)
FROM MyTable AS T2
WHERE T2.Col1 = T1.Col1
AND T2.Col2 = T1.Col2
... repeat for all columns to consider duplicates ...
)
</pre>
<p>if you don't have a Unique Key select all distinct values into a temporary table, delete all original rows, and copy back from temporary table - but this will be problematic if you have Foreign Keys referring to this table</p>
http://stackoverflow.com/questions/1724101/migrate-monolithic-classic-asp-to-asp-net2Migrate (monolithic) Classic ASP to ASP.NetKristen2009-11-12T17:49:17Z2009-11-13T03:16:46Z
<p>For many years I have had an objective of moving out of ASP/VBScript to a "better" language - my preference would be C# as I have skills in C - but I would consider other languages too (including PHP etc. so not just DotNet)</p>
<p>Objective is to have the code base in a language which does more for us. I hate the lack of data typing in VBScript, I would like a number of different "container objects" - rather than just a Dictionary Object, and so on - in fact I wonder why, having moved from Basic to C in the 80's, and then C++ a while after that, I managed to move "back" to Basic in to 00's.</p>
<p>(I could program the container objects in VBScript, but my instinct is that they would be slow in operation; we have a significant cache of "snippets" of HTML used in the rendering of the page, the ASP Application Object is a pretty blunt instrument!)</p>
<p>My ASP/VBScript is a single large application that is basically an "engine" to deliver web content.</p>
<p>It has been many years in the making, and now the ASP code changes seldom. (So I do need to justify moving it at all, or just living with VBScript "for ever")</p>
<p>It is driven from data in an MS SQL database.</p>
<p>There is only one .ASP page (made up of several include files).</p>
<p>Based on the query string parameters Skin and CMS templates for the page are loaded from database and suitable database Sprocs are run to acquire data which is merged into the CMS templates.</p>
<p>Data about the page (methods to use, etc.) is also retrieved from the database, along with details of access permissions and so on.</p>
<p>From what I have read some these things may make migration easier:</p>
<p>ASP sessions are not used - a session cookie is used to retrieve session data from the DB (so I could easily share a session half-and-half with ASPX</p>
<p>The VBScript uses OPTION EXPLICIT throughout, so all variables are predefined.</p>
<p>All output is via Response.Write (in fact most content is merged into a single variable and then output). There is no mix of HTML and <% server code %>.</p>
<p>I have some VBScript classes, but not many.</p>
<p>I have lots of VBScript functions, and a few Subroutines.</p>
<p>I have a test suite. This catches screen shots from the browser and graphically compares them with master images - thus I have the ability to do a regression test.</p>
<p>I don't have the resource to do a complete rewrite; maintenance of the existing code needs to continue during migration; but having said that 99% of our work is in CMS or SQL Sprocs, so the changes to ASP code are infrequent.</p>
<p>I have read of MS's utility to migrate ASP code to VB.NET. Given that my code is 100% VBScript and no mix of HTML/Script I would appreciate opinions on whether this would help me a lot or a little?</p>
<p>I would be happy to refactor STAYING IN VBscript with a view to making the migration to DotNet easier later on (but I'd need to know what my objectives were in doing that :) ). I could, for example, move some/all the functions to a COM object, and could probably do that piecemeal?</p>
<p>Thanks for your help</p>
http://stackoverflow.com/questions/1600276/how-can-i-set-an-alias-name-in-sql-server/1721226#17212260Answer by Kristen for How can I set an alias name in SQL ServerKristen2009-11-12T10:10:57Z2009-11-12T10:10:57Z<blockquote>
<p>How can I set alias name for both
select statement for selecting the
name?</p>
</blockquote>
<p>You can't because you are storing it in a variable.</p>
<p>Either use an OUTPUT parameter (if this code is in a stored procedure) or </p>
<p>SELECT @SYS_REM AS MyName</p>
<p>to return it as a result set</p>
http://stackoverflow.com/questions/1720940/easy-sql-query-performance-question/1721193#17211931Answer by Kristen for Easy SQL query performance questionKristen2009-11-12T10:02:48Z2009-11-12T10:02:48Z<p>SELECT * is particularly dangerous when you add columns in the future. Lets say you have a routine that needs the UserID and LastLogon date. Last you add a UserNotes TEXT column to the table and Bang! that little routine will now be pulling some (potentailly vaste) text data too, performance of the whole application will deteriorate and EVERY Select statement in the whole application will need to be fixed to cure the problem!</p>
<p>Just select the columns the application needs :)</p>
http://stackoverflow.com/questions/1720775/server-or-database/1720983#17209830Answer by Kristen for Server Or DatabaseKristen2009-11-12T09:23:14Z2009-11-12T09:23:14Z<p>Not sure I see the need for caching, but maybe I'm being naive? How does the Cache know whether the data has changed, or not?</p>
<pre>
SELECT ... lots of columns
FROM MyTable
WHERE UserID = 1234
AND LastUpdated > @MyLastUpdated
</pre>
<p>is only going to do any serious work when the AND is true? If you get zero rows back it hasn't changed - or UserID = 1234 doesn;t exist any more, but if you need to know that the query could be changed to return that too). Thus I don't think its necessary to do a "Has UserID = 1234 changed since @MyLastUpdated" query followed by a full-blown SELECT *.</p>
<p>If you retreive the value of LastUpdated in the column list, store that, then its available as a parameter when you next check if UserID = 1234 has changed.</p>
<p>(LastUpdated is not the time you last checked, but the time that the record was last updated, obviously, but it does need to be created by the same clock each time, e.s. the SQL box itself (not the client's PC!!), and allowing for what happens with daylight saving time in the Autumn.)</p>
http://stackoverflow.com/questions/1716979/are-sql-injection-attacks-only-a-threat-on-a-page-that-has-a-form/1717439#17174390Answer by Kristen for Are sql injection attacks only a threat on a page that has a form?Kristen2009-11-11T19:18:54Z2009-11-11T19:18:54Z<p>I agree that parameterisation is the best approach.</p>
<p>As an alternative (which might be easier to retro fit into your code, at least initially) doubling the single quotes in a string will prevent SQL Injection.</p>
<p>To take Neil N's example:</p>
<pre><code>sql = "Select * From Products Where ID = " + Request.Querystring["ID"];
</code></pre>
<p>wrap the variable in a function that doubles the quotes, and wrap the varible with single quotes too.</p>
<pre><code>sql = "Select * From Products Where ID = "
+ fnSQLSafeParam(Request.Querystring["ID"]);
</code></pre>
<p>The function would be something like (VBscript example):</p>
<pre><code>Function fnSQLSafeParam(ByVal strStr)
If IsNull(strStr) or IsEmpty(strStr) then strStr = ""
fnSQLSafeParam = "'" & replace(Trim(CStr(strStr)), "'", "''") & "'"
End Function
</code></pre>
http://stackoverflow.com/questions/1717049/way-to-tell-bots-from-human-visitors/1717280#17172800Answer by Kristen for Way to tell bots from human visitors?Kristen2009-11-11T18:47:32Z2009-11-11T18:47:32Z<p>Rather than trying to maintain an impossibly-long list of spider User Agents we look for things that suggest human behaviour. Principle of these is that we split our Session Count into two figures: the number of single-page-sessions, and the number of multi-page-sessions. We drop a session cookie, and use that to determine multi-page sessions. We also drop a persistent "Machine ID" cookie; a returning user (Machine ID cookie found) is treated as a multi-page session even if they only view one page in that session. You may have other characteristics that imply a "human" visitor - referrer is Google, for example (although I believe that the MS Search bot mascarades as a standard UserAgent referred with a realistic keyword to check that the site doesn't show different content [to that given to their Bot], and that behaviour looks a lot like a human!)</p>
<p>Of course this is not infalible, and in particular if you have lots of people who arrive and "click off" its not going to be a good statistic for you, nor if you have predominance of people with cookies turned off (in our case they won't be able to use our [shopping cart] site without session-cookies enabled). </p>
<p>Taking the data from one of our clients we find that the daily single-session count is all over the place - an order of magnitude different from day to day; however, if we subtract 1,000 from the multi-page session per day we then have a damn-near-linear rate of 4 multi-page-sessions per order placed / two session per basket. I have no real idea what the other 1,000 multi-page sessions per day are!</p>
http://stackoverflow.com/questions/1714044/what-are-some-options-to-store-images-securely-other-than-storing-on-database/1714085#17140851Answer by Kristen for What are some options to store images securely other than storing on database? Kristen2009-11-11T09:33:02Z2009-11-11T09:33:02Z<p>If images are stored in a folder that has no direct web access permissions you can then do</p>
<pre><code><img src="getimage.aspx?id=1234">
</code></pre>
<p>and have your GetImage "page" do any appropraite permissions test (e.g. using session ID) and then "deliver" the image from the secure folder.</p>
<p>Downside is that the image is not cached I think? but I expect that is true of the database route too.</p>
<p>Storing images in the phyiscal database bloats the database, increasing backup & restore times; but it provides a single container which is great if you want to move everything to a new / multiple servers, or if ensuring referential integrity between Image and other data in the DB is important</p>
http://stackoverflow.com/questions/1710114/jquery-tree-plugin/1710235#17102351Answer by Kristen for Jquery Tree pluginKristen2009-11-10T18:43:35Z2009-11-10T18:43:35Z<p>I use <a href="http://wwwendt.de/tech/dynatree/doc/samples.html" rel="nofollow">Dynatree</a> for JQuery. Seems pretty comprehensive. (Follow the "Programming API" link in left pane for examples of programmably adding nodes etc.)</p>
http://stackoverflow.com/questions/1709348/query-running-longer-by-adding-unused-where-conditions/1709883#17098830Answer by Kristen for Query running longer by adding unused WHERE conditionsKristen2009-11-10T17:53:46Z2009-11-10T17:53:46Z<blockquote>
<p>I should fight the urge to reduce duplication...but man, that really doesn't feel right to me.</p>
</blockquote>
<p>Would this "feel" better?</p>
<pre>
SELECT ... lots of columns and complicated stuff ...
FROM
(
SELECT MyPK
FROM TBooks
WHERE
(--...SOME CONDITIONS)
AND @AuthorType = 1 AND --...DIFFERENT CONDITIONS)
union all
SELECT MyPK
FROM TBooks
WHERE
(--...SOME CONDITIONS)
AND @AuthorType = 2 AND --...DIFFERENT CONDITIONS)
union all
...
) AS B1
JOIN TBooks AS B2
ON B2.MyPK = B1.MyPK
JOIN ... other tables ...
</pre>
<p>The pseudo table B1 is just the WHERE clause to get the PKs. That is then joined back to the original table (and any others that are required) to get the "presentation". This avoids duplicating the Presentation columns in every UNION ALL</p>
<p>You can take this a step further and insert PKs into a temporary table first, and then join that to the other tables for the presentation aspect.</p>
<p>We do this for very large tables where the user has lots of choices on what to query on.</p>
<pre>
DECLARE @MyTempTable TABLE
(
MyPK int NOT NULL,
PRIMARY KEY
(
MyPK
)
)
IF @LastName IS NOT NULL
BEGIN
INSERT INTO @MyTempTable
(
MyPK
)
SELECT MyPK
FROM MyNamesTable
WHERE LastName = @LastName -- Lets say we have an efficient index for this
END
ELSE
IF @Country IS NOT NULL
BEGIN
INSERT INTO @MyTempTable
(
MyPK
)
SELECT MyPK
FROM MyNamesTable
WHERE Country = @Country -- Got an index on this one too
END
... etc
SELECT ... presentation columns
FROM @MyTempTable AS T
JOIN MyNamesTable AS N
ON N.MyPK = T.MyPK -- a PK join, V. efficient
JOIN ... other tables ...
ON ....
WHERE (@LastName IS NULL OR Lastname @LastName)
AND (@Country IS NULL OR Country @Country)
</pre>
<p>Note that all tests are repeated [technically you don;t need the @Lastname one :) ], including obscure ones which were (lets say) not in the original filters to create @MyTempTable.</p>
<p>The creation of @MyTempTable is designed to make the best of whatever parameters are available. Perhaps if both @LastName AND @Country are available that is far more efficient at filling the table than either one of them, so we create a case for that scenario.</p>
<p>Scaling problems? Review what actual queries are being made and add cases for the ones that can be improved.</p>
http://stackoverflow.com/questions/259039/getting-counts-for-a-paged-sql-search-stored-procedure/1709282#17092821Answer by Kristen for Getting counts for a paged SQL search stored procedureKristen2009-11-10T16:32:46Z2009-11-10T16:32:46Z<p>I'm sure you've considered this: If the data is changing the COUNT and any subsequent actual Paging may be different (if rows added / removed)</p>
<p>You could have a User Defined Function that returned the PKs of the matching rows, relatively easy to do a</p>
<pre>
SELECT COUNT(*) FROM dbo.MyQueryFunction(@Param1, @Param2)
</pre>
<p>to get the count, and then</p>
<pre>
SELECT Col1, Col2, ...
FROM dbo.MyQueryFunction(@Param1, @Param2) AS FN
JOIN dbo.MyTable AS T
ON T.ID = FN.ID
... more JOINs ...
</pre>
<p>to get the data. </p>
<p>Don't know how well this sits with Row_Number for the subsequent paging, but it would keep the actual "query logic" contained within MyQueryFunction - you're still going to have all the JOINs for any column to be retrieved duplciate in the Sproc and the Function.</p>
http://stackoverflow.com/questions/1709057/update-each-row-in-a-procedure/1709198#17091980Answer by Kristen for update each row in a procedureKristen2009-11-10T16:22:26Z2009-11-10T16:22:26Z<p>As Dan said, but in MS SQL Server I find this styling easier to read:</p>
<pre>
UPDATE U
SET U.field1 = V.bus
FROM table1 AS U
JOIN view1 AS V
ON V.document = U.document
</pre>
<p>Note that if VIEW1 could have multiple rows for a given TABLE1 row [DOCUMENT] value then the [BUS] value choosen to update TABLE1 will be random, within the matching set. (If this is the case the query could be modified to choose MAX / MIN / etc.)</p>
<p>I would refine this query to NOT update any rows that already matched the BUS value, which will make it faster if it is rerun and thus some values already exist in TABLE1</p>
<pre>
UPDATE U
SET U.field1 = V.bus
FROM table1 AS U
JOIN view1 AS V
ON V.document = U.document
WHERE U.field1 = V.bus
OR (U.field1 IS NOT NULL AND V.bus IS NULL)
OR (U.field1 IS NULL AND V.bus IS NOT NULL)
</pre>
<p>you can leave out the NULL / NOT NULL tests if the field is defined as not allowing NULLs</p>
http://stackoverflow.com/questions/1708822/multipart-form-data-and-utf-8-in-a-asp-classic-application/1709032#17090321Answer by Kristen for Multipart/form-data and UTF-8 in a ASP Classic applicationKristen2009-11-10T16:00:30Z2009-11-10T16:00:30Z<p>I don't know if this will be any help, but I have worked with some <a href="http://jeppemannen.svenskablogg.se/2009/09/08/swfuploadandasp/" rel="nofollow">classic ASP</a> code to use the SWFUpload utility (Flash plugin that allows multiple file uploads in a batch).</p>
<p>The ASP sample code includes some comprehensive code that sorts out the Byte/Unicode decoding, and looks similar to what you mention regarding chr(AscB(MidB(... - perhaps seeing a second example might shed light on your problem.</p>
http://stackoverflow.com/questions/1708815/efficient-way-to-check-if-a-sql-query-will-return-results/1708952#17089521Answer by Kristen for Efficient way to check if a SQL query will return resultsKristen2009-11-10T15:47:52Z2009-11-10T15:47:52Z<blockquote>
<p>The final results will actually be a
far more complex query, taking one to
many parameters and the string built
up and executed using sp_executesql</p>
</blockquote>
<p>I think you, at least, need the full FROM, JOIN and WHERE syntax, otherwise your actual query may find nothiong (e.g. by adding an INNER JOIN that was not in the original IF EXISTS query and turns out to not be satisfied).</p>
<p>If you are going to that trouble you might want to get the PKs into some sort of "Batch ID Holding Table" so that you can just reference the PKs for the second "Presentation" part of your query.</p>
<p>What are you planning to do if you get 376,986 results? If you are going to show them to the user on screen, with some sort of paging, then having the results in a "Batch ID Holding Table" might assist with that (although, obviously, any additions / deletions etc. to the udnerlying data will muck up the paged display).</p>
<p>Alternatively, if you are going to be using paging just use TOP / LIMIT / SET ROWCOUNT to restrict the results to the first page full (make sure you have an ORDER BY so the sequence is repeatable), and then sort out what to do for Page 2 when the user presses the NEXT-PAGE button (we tackle that by the NEXT-PAGE button containing the PK of the last record displayed, in sort-order, so that the Next Page can resume from that point onwards).</p>
<p>The Query Optimiser will do different things depending on what the SELECT list is - so asking "IF EXISTS" followed by "SELECT Col1, COl2, ... FROM ..." may in effect mean that you run the complete query twice, differently, using different cached data and query plans, so overall that may be more of a strain on your server, and cause the users to wait longer, than just geting the first page / 100 rows etc.</p>
<p>SQL Server will cache the query plan for sp_ExecuteSQL, but make sure you parameterise the query so that the cached plan is resued where possible</p>
http://stackoverflow.com/questions/1577261/how-do-i-report-sql-injection-attacks0How do I report SQL Injection attacks? [closed]Kristen2009-10-16T10:17:36Z2009-10-16T10:37:01Z
<p>Our sites are immune to SQL Injection (AFAIK!), but of course we still get targetted regularly.</p>
<p>Is there some way I could automate reporting of attempted attacks - reverse DNS lookup etc.?</p>
<p>Although I guess its only worthwhile if, overall, it woudl be doing the community a favour.</p>
<p>Ditto I suppose for all the other attacks we see - probing for wide-open BBS, MySQL, PHPAdmin, etc.</p>
http://stackoverflow.com/questions/1544244/what-technical-features-could-i-include-in-my-404-file-not-found-error-handling-p0What technical features could I include in my 404 File Not Found error handling page?Kristen2009-10-09T14:45:28Z2009-10-09T15:16:32Z
<p>I have a custom 404 error handling page </p>
<p>It looks up the URL in a database table and redirects if there is a suitable target. URLs are logged, together with the Redirect provided (if any) and our App has an Admin report to show which URLs are getting caught, allowing Client to set up more etc.</p>
<p>We have a single, specific, Images folder, but we get image requests with malformed paths. Where we can find a matching image name in /IMAGES/ we return that. Should I use a 301? (we currently return a 200)</p>
<p>We highlight these on the Admin report - because likelihood is that there is an error in CMS or a bulk Email or somesuch, and by redirecting we are just masking the problem (and fixing it will help performance I think?)</p>
<p>I am wondering if we should return a dummy image when we get a 404 on a missing JPG/GIF/PNG? Currently we are returning 404 result and a sorry page in HTML - which strikes me as a bit daft, would the user's browser do anything useful with a returned Image if there is a 404 response code?</p>
<p>I also wonder if returning an image "Image not found, visit www.example.com" would be helpful (perhaps specifically if my domain is NOT the referrer!). Then the useless person who embeds our images in their site, wrongly at that!, might at least drive us some traffic.</p>
<p>Similarly should I return something useful if I get a 404 request for JS or CSS files? I'm thinking in DEV, at least, it would be handy to know we've goofed up. Sometimes the missing file can be sufficiently obscure, in its usage, that its absence is missed in QA. (I suppose someone <strong>OUGHT</strong> to notice it in the 404 logs!), but I'm thinking of maybe setting BODY to something massive, or an ALERT in the .JS file returned, might help in DEV.</p>
<p>In Googling around this today I also fell over the suggestion that a malformed query string could return a "400 Bad Request" and a well formed query string, but where a parameter has an invalid value (e.g. product code not found) could be treated as a 404. If I do that and also return content (e.g. an explanation page) will the user see that, or might their browser replace it with a canned 404-error page? (I had a feeling that an earlier version of IE did that?)</p>
<p>All ideas appreciated.</p>
<p>(Classic ASP/IIS in my case, but hopefully the question is generic)</p>
<p><strong>Edit</strong>: I also wonder if anyone does anythign special with things that look like known hack attempts?</p>
<ul>
<li>http://www.example.com:80/<b>admin/phpmyadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>admin/pma/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>admin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>db/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>dbadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>myadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>mysql/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>mysqladmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpMyAdmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpmyadmin1/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpmyadmin2/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>pma/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>web/scripts/setup.php</b></li>
</ul>
<p>and these "feelers":</p>
<ul>
<li>http://www.example.com:80/_vti_bin/owssvr.dll?...</li>
<li>http://www.example.com:80/MSOffice/cltreq.asp?...</li>
</ul>
<p><strong>Edit2</strong>: Sorry, hopefully the last after-though.</p>
<p>Should I allocate a Session ID? That would enable me to track whether the user comes back with something more intelligent at a second attempt (which might cause us to add an entry to our Redirect table). Creating a session involves creating a Session record in the database and some other stuff, so is not as "cheap" as just giving out a 404 error</p>
http://stackoverflow.com/questions/1527503/escaping-characters-in-javascript-strings0Escaping characters in javascript stringsKristen2009-10-06T19:12:58Z2009-10-06T19:27:19Z
<p>I thought that escaping quote characters in javascript was done by either using the other style of quote </p>
<pre><code>"xxx ' yyy"
</code></pre>
<p>or </p>
<pre><code>'xxx " yyy'
</code></pre>
<p>or using a backslash to quote them </p>
<pre><code>'xxx \' yyy\'
</code></pre>
<p>or </p>
<pre><code>"xxx \" yyy"
</code></pre>
<p>but that doesn't seem to work in the problem I am currently working on.</p>
<p>The code I want to put in my generated HTML is: </p>
<pre><code><input type="text" value="MyValue" name="MyName"
onChange="MyFunction(this, 0, 99999, ['XXX', this.value, 'YYY']);">
</code></pre>
<p>The question is what escaping is needed for the string YYY?</p>
<p>I thought escaping single quote (') would be fine, but then I would also need to escape double quote (") as that is the outer wrapper for the onChange code.</p>
<p>Lets say the string I want for YYY is: </p>
<pre><code>SQ' DQ" LT< GT> AMP&
</code></pre>
<p>so I tried outputting </p>
<pre><code><input type="text" value="MyValue" name="MyName"
onChange="MyFunction(this, 0, 99999,
['XXX', this.value, 'SQ\' DQ\" LT< GT> AMP&']);">
</code></pre>
<p>but FireFox saw the "<" as breaking the code</p>
<p>Eventually, to keep FireFox happy, I had to use </p>
<pre><code>SQ\' DQ\x22 LT\x3C GT\x3E AMP\x26
</code></pre>
<p>i.e. </p>
<pre><code><input type="text" value="MyValue" name="MyName"
onChange="MyFunction(this, 0, 99999,
['XXX', this.value, 'SQ\' DQ\x22 LT\x3C GT\x3E AMP\x26']);">
</code></pre>
<p>this is a heck of a lot more escaping than I had expected. Is it really necessary, or have I missed something more straightforward?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1525276/log-web-page-viewing-sequence-even-after-back-pressed0Log web page viewing sequence - even after BACK pressedKristen2009-10-06T12:22:07Z2009-10-06T12:30:37Z
<p>I have a log of web pages viewed by users. This is to facilitate diagnosis of problems, and review user activity (which can be revealing! and lead to improvements to the site)</p>
<p>I log lots of data to enable recreating what the user did - all the Form variables, cookies, etc.</p>
<p>I also log when the page finished rendering in the clients browser (with a WebBot image).</p>
<p>One of the things that I have difficulty with is where the user presses BACK and then picks a different route to continue their browsing from.</p>
<p>e.g. from the log I can see that the user viewed PageA, PageB then PageC - but there may be no route from PageB to PageC and actually the user went BACK to PageA and then forward to PageC.</p>
<p>I have a unique ID for each page rendered, which I could use as a "Came From" indicator.</p>
<p>One thought I had was to store that ID in a cookie (via Javascript). But before I start trying stuff I'd appreciate any advice you have.</p>
http://stackoverflow.com/questions/619032/remove-duplicate-from-a-staging-file/619327#6193270Answer by Kristen for Remove duplicate from a staging fileKristen2009-03-06T15:52:59Z2009-03-10T15:27:07Z<p>This will remove rows with match on Col1, Col2 etc and have an UpdateDate that is NOT the most recent:</p>
<pre><code>DELETE D
FROM MyTable AS D
JOIN MyTable AS T
ON T.Col1 = D.Col1
AND T.Col2 = D.Col2
...
AND T.UpdateDate > D.UpdateDate
</code></pre>
<p>If Col1 and Col2 need to be considered "matching" if they are both NULL then you would need to use:</p>
<pre><code> ON (T.Col1 = D.Col1 OR (T.Col1 IS NULL AND D.Col1 IS NULL))
AND (T.Col2 = D.Col2 OR (T.Col2 IS NULL AND D.Col2 IS NULL))
...
</code></pre>
<p><strong>Edit</strong>: If you need to make a Case Sensitive test on a Case <strong>IN</strong>sensitive database then on VARCHAR and TEXT columns use:</p>
<pre><code> ON (T.Col1 = D.Col1 COLLATE Latin1_General_BIN
OR (T.Col1 IS NULL AND D.Col1 IS NULL))
...
</code></pre>
http://stackoverflow.com/questions/625920/jquery-popup-bubble/628324#6283241Answer by Kristen for JQuery Popup BubbleKristen2009-03-09T22:43:25Z2009-03-09T22:43:25Z<p>Remy Sharp @ jQuery for Designer did a screencast about making a Bubble like the one on the Coda site and that takes you through the whole process - including keeping the bubble active whilst moving mouse from original launch location over the bubble, and back.</p>
<p><a href="http://jqueryfordesigners.com/coda-popup-bubbles/" rel="nofollow">http://jqueryfordesigners.com/coda-popup-bubbles/</a></p>
http://stackoverflow.com/questions/1857977/database-versioning/1857993#1857993Comment by Kristen on Database versioningKristen2009-12-07T11:00:13Z2009-12-07T11:00:13ZMy only doubt though is that you have a VERSION column. If every edit makes a new version the a History table is fine, if the user / some process defines when a new version has been "achieved" then that needs some further logic. You could still ahve a version column, every previous change in History, and query the most-recent-history record with a given version number - including the main table in case the most recent copy of the current version is requested :)http://stackoverflow.com/questions/1857977/database-versioning/1857993#1857993Comment by Kristen on Database versioningKristen2009-12-07T10:58:24Z2009-12-07T10:58:24ZWe do this and use a Trigger to store the CURRENT record into the History table on UPDATE and DELETE - with additional column in History table for whether Update or Delete and the Date/Time of the action. Note that we do NOT store the current record in the History table (i.e. no trigger on INSERT) which I do see many auditing systems do, but strikes me that's using a lot fo disk space for data you already have in the main table. Having a PK on the history table of Main_ID + AuditDate has not been unique for us, so you may want to consider an IDENTITY column alsohttp://stackoverflow.com/questions/1839738/portable-sql-that-works-in-sql-server-mysql-and-postgresqlComment by Kristen on Portable SQL that works in SQL Server, mySQL and postgreSQLKristen2009-12-03T13:14:41Z2009-12-03T13:14:41ZMy worry would be that you will lose out on a lot of optimisation gains (or optimisation opportunity!) if you don`t cater for separate platforms. There will be things that MSSQL can do much faster in a stored procedure, than from dynamic SQL, for example - but I don`t reckon MS Stored Procedure syntax is portable to much if anything else!http://stackoverflow.com/questions/1833088/what-gotchas-have-you-discovered-programming-sms-alerts/1833689#1833689Comment by Kristen on What Gotchas have you discovered programming SMS/Alerts?Kristen2009-12-02T17:28:39Z2009-12-02T17:28:39ZVery helpful, thanks. My host/user pays is just a case of whether the Host considers the message their responsibility to deliver, or whether its a luxury for the recipient so they should pay, but I take your point about USA or countries where recipient pays. The SMS Alphabet sounds horrid but maybe the gateway takes care of that if i just send them a POST that is URL-encodedhttp://stackoverflow.com/questions/1833088/what-gotchas-have-you-discovered-programming-sms-alerts/1833177#1833177Comment by Kristen on What Gotchas have you discovered programming SMS/Alerts?Kristen2009-12-02T17:13:59Z2009-12-02T17:13:59ZGood point. We record all messages sent, and they can be viewed online, so time of sending etc would be visible in such a scenariohttp://stackoverflow.com/questions/1724101/migrate-monolithic-classic-asp-to-asp-net/1724291#1724291Comment by Kristen on Migrate (monolithic) Classic ASP to ASP.NetKristen2009-11-22T04:04:14Z2009-11-22T04:04:14ZGood points. In my "more performance is always welcome" I was referring to cost of running a server - i.e. we can get more clients on a shared server if the application performs better, rather than providing better client satisfaction per se - although if we left the same number of customers on a shared server, and improved the performance of the APP, it would run faster for all clients :)http://stackoverflow.com/questions/1776631/update-and-insert-stored-procedure/1776694#1776694Comment by Kristen on Update and Insert Stored ProcedureKristen2009-11-21T21:45:56Z2009-11-21T21:45:56ZWill the EXISTS lock the PK being queried such that there is no possbility of another user doing an INSERT in the meantime? If not then there is the posibility that the EXISTS finds NO row, but the subsequent INSERT fails because the row has already been inserted (by then). I don't know the answer WRT the Isolation level, hence my question.http://stackoverflow.com/questions/1776344/doubt-about-put-scripts-at-the-bottom-advice/1776413#1776413Comment by Kristen on Doubt about "Put SCRIPTs at the bottom" adviceKristen2009-11-21T19:18:45Z2009-11-21T19:18:45ZGood point about external / off-site scripts being hosted on a server that turns out to be Down and that causing the whole page rendering to be "wrecked". We host, e.g., JQuery include scripts on our own server (rather than using, say, Google's code-server) so that we have tight control of the outcome.http://stackoverflow.com/questions/1776344/doubt-about-put-scripts-at-the-bottom-advice/1776352#1776352Comment by Kristen on Doubt about "Put SCRIPTs at the bottom" adviceKristen2009-11-21T19:15:12Z2009-11-21T19:15:12ZI'm probably being thick again, but even if I use READY() how does that help me with an OnClick event? If the user clicks it before my late-loading library has finsihed loading, or if they click it before the READY() even has fired (and some unobtrusive JS has modified the OnClick event for that element), the user won't get my intended OnClick action at all - will they? In which case rendering the content such that the user can see it "sooner" is of no benefit if they can't then Click anything UNTIL the JS has finished loading - but perhaps I'm missing something??http://stackoverflow.com/questions/1776344/doubt-about-put-scripts-at-the-bottom-advice/1776362#1776362Comment by Kristen on Doubt about "Put SCRIPTs at the bottom" adviceKristen2009-11-21T19:10:36Z2009-11-21T19:10:36ZThanks. You make a good point about 3rd party libraries, although my point was intended to be related to libraries supporting code that we execute "in the page", and, as it happens, we don't have any 3rd party libraries for that. We do have Google Analytics, and now I think about it we do have that right at the bottom :)http://stackoverflow.com/questions/1724101/migrate-monolithic-classic-asp-to-asp-net/1724291#1724291Comment by Kristen on Migrate (monolithic) Classic ASP to ASP.NetKristen2009-11-21T08:13:17Z2009-11-21T08:13:17ZWe don't have a performance problem. But we host multiple clients per server, more performance is always welcome. Our clients don;t have a problem with our development times, but if we improve them we make more profit. We don't have a "next project", this is an engine used as the backbone for all our client work.http://stackoverflow.com/questions/578146/best-examples-of-crud-web-form-design/1731492#1731492Comment by Kristen on Best examples of CRUD Web Form DesignKristen2009-11-17T11:45:27Z2009-11-17T11:45:27ZNice examples. I didn't find a CRUD-specific one, but I've posted a request on their UserVoice :) Thanks for the links.http://stackoverflow.com/questions/1728048/removing-duplicate-field-entries-in-sql/1728089#1728089Comment by Kristen on Removing duplicate field entries in SQLKristen2009-11-13T15:27:13Z2009-11-13T15:27:13Z@ZombieSheep the inner query will take care of that (provided UserName is included in the WHERE) although I now appreciate that this doesn't work in MySQLhttp://stackoverflow.com/questions/1728048/removing-duplicate-field-entries-in-sql/1728089#1728089Comment by Kristen on Removing duplicate field entries in SQLKristen2009-11-13T15:17:56Z2009-11-13T15:17:56ZAs the accepted answer works does MySQL allow a sub-select on the delete-table so long as it is in a JOIN, just not for a correlated sub-select?http://stackoverflow.com/questions/1728048/removing-duplicate-field-entries-in-sql/1728089#1728089Comment by Kristen on Removing duplicate field entries in SQLKristen2009-11-13T15:13:43Z2009-11-13T15:13:43ZSorry, I don't have MySQL