User Kevin Fairchild - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T23:20:40Zhttp://stackoverflow.com/feeds/user/3743http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128150/finding-a-partner-for-a-for-profit-software-project/128180#1281805Answer by Kevin Fairchild for Finding a partner for a for-profit software projectKevin Fairchild2008-09-24T16:22:25Z2009-12-11T16:17:13Z<p>Talk with the ones you feel are confident with but are too busy. Ask them to recommend folks <em>they</em> would want to work with. Typically, those with high skill sets tend to be pretty good at recognizing others with similar skills.</p>
<p>If you don't have a solid enough business plan or wouldn't have enough to offer the folks with skills, though, don't expect many <em>qualified</em> people to offer up themselves or peers too eagerly.</p>
http://stackoverflow.com/questions/1837287/which-new-type-of-hand-held-to-develop-for/1837294#18372943Answer by Kevin Fairchild for Which new type of hand held to develop for?Kevin Fairchild2009-12-03T02:36:26Z2009-12-03T02:36:26Z<p>I'd go for something Android-based, personally.</p>
http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp0ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2008-09-19T22:34:47Z2009-10-07T04:55:01Z
<p>I've attempted just about everything to get our ClickOnce VB.NET app to run under Terminal Services as a RemoteApp. I have a batch file that runs the .application file for the app.</p>
<p><strong>This works fine via RDP desktop session on the terminal server</strong>. As a TS RemoteApp, however, well... not so much.</p>
<p>I get a quick flash of command prompt (the batch file) on the client system and then... nothing...</p>
<p>Same goes for having it point to the .application file directly (without using a batch file) or even copying the publication locally and having it point to that.</p>
<p>I found a <a href="http://social.technet.microsoft.com/forums/en-US/winserverTS/thread/0226cf94-133c-4b22-9800-942e7d091c71/" rel="nofollow">technet.microsoft.com</a> discussion about a similar issue, but there's no resolution to it listed.</p>
<p><strong>For anyone who has run into this before and got it working, what did you have to do?</strong></p>
<p>We currently use RemoteApp's for everything else on that server, so I'm hoping to stick with that if possible.</p>
<p>The current workaround is to build and run an MSI-based installer for the app on our terminal server whenever we publish via OneClick out to the network, but this can be quite a pain at times and is easy to forget to do.</p>
<p>Since the app works fine via Terminal Services when run in full desktop mode but not during RemoteApp, I don't think it's anything specific to Terminal Server permissions so much as ClickOnce requiring something that isn't available when running as a RemoteApp.</p>
http://stackoverflow.com/questions/152981/recommend-one-favorite-ssis-component-that-does-sftp-ftps2Recommend ONE favorite SSIS component that does SFTP/FTPSKevin Fairchild2008-09-30T13:18:42Z2009-10-02T19:04:26Z
<p>Sometimes normal FTP doesn't quite cut it... When you need to do secure FTP via SSIS packages, what ONE product would you recommend?</p>
<p>Before answering, please see if someone has already suggested the same thing and, if so, vote it up.</p>
<p>NOTE: Ideally, it needs to handle both SSH and SSL FTP connections, but I'd consider two separate components if it makes the most sense....</p>
http://stackoverflow.com/questions/285429/terminal-services-get-client-name-while-running-as-administrator2Terminal Services: Get Client Name While Running As AdministratorKevin Fairchild2008-11-12T21:23:13Z2009-04-09T02:22:31Z
<p>Under normal circumstances, a VB.NET application of mine can check the ClientName environmental variable to get the name of the workstation the user is connecting from.</p>
<p>So when WorkstationX RDPs into ServerA:</p>
<ul>
<li>ComputerName=ServerA</li>
<li>ClientName=WorkstationX</li>
</ul>
<p>That works fine.</p>
<p>If I right-click on the application and choose Run As Administrator, the ClientName variable is not set.</p>
<p>Does anyone know of a way of easily getting the workstation name of the client connected to the terminal server, even when the application is launched via "Run As Administrator"?</p>
http://stackoverflow.com/questions/558858/coding-stored-procedure-for-search-screen-with-multiple-optional-criteria/558890#5588903Answer by Kevin Fairchild for Coding stored procedure for search screen with multiple, optional criteriaKevin Fairchild2009-02-17T21:54:59Z2009-02-17T21:54:59Z<p>I'd set each parameter to optional (default value being null)</p>
<p>and then handle it in the <em>WHERE</em>....</p>
<pre><code>FirstName=ISNULL(@FirstName,FirstName)
AND
LastName=ISNULL(@LastName,LastName)
AND
SemesterID=ISNULL(@SemesterID,SemesterID)
</code></pre>
<p>That'll handle only first name, only last name, all three, etc., etc.</p>
<p>It's also a lot more pretty/manageable/robust than building the SQL string dynamically and executing that.</p>
http://stackoverflow.com/questions/532875/sql-vs-code-where-is-the-balance/532904#5329042Answer by Kevin Fairchild for SQL vs CODE, Where is the balance?Kevin Fairchild2009-02-10T15:58:32Z2009-02-10T15:58:32Z<p>My decision of code vs. sql typically depends on which seems the easiest/quickest to implement. Once it's there, I move on. Later, if it seems like it should get moved, it gets moved. <<em>shrug</em>> I try not to sweat it too much early on, though.</p>
<p>If it's something heavily tied to the database -- especially something involving lots of working with database records -- it just makes sense to go into sql. If it's something that's tied closely to the application, it goes there.</p>
http://stackoverflow.com/questions/497464/is-there-a-way-to-select-and-update-rows-at-the-same-time/497474#4974747Answer by Kevin Fairchild for Is there a way to SELECT and UPDATE rows at the same time?Kevin Fairchild2009-01-30T22:15:54Z2009-01-30T22:15:54Z<p>It'd be easier to do your UPDATE first and then run 'SELECT ID FROM INSERTED'.</p>
<p>Take a look at <a href="http://blogs.msdn.com/sqltips/archive/2005/06/13/OUTPUT-clause.aspx" rel="nofollow">SQL Tips</a> for more info and examples.</p>
http://stackoverflow.com/questions/262547/reasons-not-to-use-an-auto-incrementing-number-for-a-primary-key/265325#2653250Answer by Kevin Fairchild for Reasons not to use an auto-incrementing number for a primary keyKevin Fairchild2008-11-05T14:42:59Z2009-01-30T13:39:55Z<p>My main issue with auto-incrementing keys is that they lack any meaning.</p>
<p><strong>For tables where certain fields provide uniqueness</strong> (whether alone or in combination with another), I'd opt for using that instead.</p>
http://stackoverflow.com/questions/466130/can-you-search-sql-server-2005-stored-procedure-content/466146#4661461Answer by Kevin Fairchild for Can you search SQL Server 2005 Stored Procedure content?Kevin Fairchild2009-01-21T17:13:33Z2009-01-21T17:13:33Z<pre><code>SELECT OBJECT_NAME(id) AS ObjectName, [Text] AS CodeSnippet
FROM syscomments (nolock)
WHERE [TEXT] LIKE '%Whatever You Want To Search For%'
</code></pre>
http://stackoverflow.com/questions/290570/advice-about-forming-hackers-club/290587#2905874Answer by Kevin Fairchild for Advice about forming Hackers ClubKevin Fairchild2008-11-14T16:11:26Z2009-01-16T15:04:00Z<p>We do this at the office. I call it 'Developer Fight Club'</p>
<p>Usually do challenges of varying difficulty and compete against one another.</p>
<p>At the end of it, we go over our solutions, do code-reviews and discussions, and then use either benchmark results or other people as the deciding factor for who wins.</p>
<p>Typically, the loser has to buy lunch for the winner :)</p>
<p>For ideas of things to do, try stuff from <a href="http://www.topcoder.com/tc" rel="nofollow">Top Coder</a>, programming questions on Stack Overflow, or even simple "<a href="http://en.wikipedia.org/wiki/Crackme" rel="nofollow">crackme</a>" applications available on different programming sites.</p>
<p>The main rules you'll need to adhere to are:</p>
<ul>
<li>Make It Fun</li>
<li>Make It Educational Make</li>
<li>Make It Fair</li>
</ul>
<p>Try to rotate the challenges, so either everyone is really good at the subject, equally bad, or at least mix it up often enough that it doesn't favor one person's skillset too much.</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/417593#4175932Answer by Kevin Fairchild for What good technology podcasts are out there?Kevin Fairchild2009-01-06T18:16:16Z2009-01-06T18:16:16Z<p><a href="http://www.crankygeeks.com/" rel="nofollow">Cranky Geeks</a></p>
http://stackoverflow.com/questions/403687/switching-ok-cancel-and-cancel-ok-to-enforce-user-interaction/403745#4037451Answer by Kevin Fairchild for Switching OK-Cancel and Cancel-OK to enforce user interaction?Kevin Fairchild2008-12-31T18:40:01Z2008-12-31T18:47:12Z<p>What I've done in some instances was to compare the time of the message box being shown with the time of it being dismissed. If it was less than 'x' amount of seconds, it popped right back up. This forced them, in most cases, to actual read what was on the screen rather than just clicking through it blindly.</p>
<p>Fairly easy to do, as well....</p>
<p>Something like this:</p>
<pre><code>Dim strStart As DateTime = Now
While Now < strStart.AddSeconds(5)
MessageBox.Show("Something just happened", "Pay Attention", MessageBoxButtons.OK)
If Now < strStart.AddSeconds(5) Then strStart = Now Else Exit While
End While
</code></pre>
http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/349848#3498485Answer by Kevin Fairchild for What programming jobs do you aspire to?Kevin Fairchild2008-12-08T15:23:55Z2008-12-08T15:23:55Z<p>Robotics programming would be neat.</p>
http://stackoverflow.com/questions/338535/is-sql-server-windows-integrated-security-good-for-anything/341322#3413222Answer by Kevin Fairchild for Is SQL Server/Windows integrated security good for anything?Kevin Fairchild2008-12-04T16:59:53Z2008-12-04T16:59:53Z<p>Since everyone else has discussed the benefits of Windows Authentication, I guess I'll play Devil's Advocate...</p>
<p>Allowing the account 'Joe User' to have access to the server means that not only can be connect with your app, but he can also connect via any other means (SQL Tools, Excel, malware, etc.).</p>
<p>With SQL Authentication, your app can run as a certain user and then the app can handle the database access. So when 'Joe User' runs your app, the app has SQL access... But 'Joe User' himself doesn't, which means that the aforementioned apps wouldn't be able to have implicit access to the database.</p>
http://stackoverflow.com/questions/338075/cast-and-isnumeric/338098#3380981Answer by Kevin Fairchild for CAST and IsNumericKevin Fairchild2008-12-03T17:55:51Z2008-12-03T17:55:51Z<p>Try this and see if you still get an error...</p>
<pre><code>SELECT CAST(CASE WHEN IsNumeric(myVarcharColumn) = 0 THEN 0 ELSE myVarcharColumn END AS bigint) FROM myTable WHERE IsNumeric(myVarcharColumn) = 1 AND myVarcharColumn IS NOT NULL GROUP BY myVarcharColumn
</code></pre>
http://stackoverflow.com/questions/337158/how-can-i-implement-sql-intersect-and-minus-operations-in-ms-access/337199#3371992Answer by Kevin Fairchild for How can I implement SQL INTERSECT and MINUS operations in MS AccessKevin Fairchild2008-12-03T14:06:51Z2008-12-03T16:01:47Z<p>They're done through JOINs. The old fashioned way :)</p>
<p>For INTERSECT, you can use an INNER JOIN. Pretty straightforward. Just need to use a GROUP BY or DISTINCT if you have don't have a pure one-to-one relationship going on. Otherwise, as others had mentioned, you can get more results than you'd expect.</p>
<p>For MINUS, you can use a LEFT JOIN and use the WHERE to limit it so you're only getting back rows from your main table that don't have a match with the LEFT JOINed table.</p>
<p>Easy peasy.</p>
http://stackoverflow.com/questions/337141/how-do-i-compute-an-order-line-number-in-sql-2000/337220#3372200Answer by Kevin Fairchild for How do I Compute an Order Line Number in SQL 2000Kevin Fairchild2008-12-03T14:11:18Z2008-12-03T14:11:18Z<p>IMHO, calculating it every time you need it may end up being more of a headache than it's worth. And while it may be a pain to update the historical line numbers and save it to the database, you'd only be doing that once... and then would just need to write code to automate it later.</p>
<p>To handle the deletes, you'd just need to add code into the existing delete procedure and have it recalculate the line numbers for it.</p>
http://stackoverflow.com/questions/326634/sorting-on-the-server-or-on-the-client/326651#3266510Answer by Kevin Fairchild for Sorting on the server or on the client?Kevin Fairchild2008-11-28T20:51:42Z2008-11-28T20:51:42Z<p>As usual, "<strong>It Depends</strong>" :)</p>
<p>If you have a stored procedure, for instance, that sends results to your presentation layer (whether a report, grid, etc.), it probably doesn't matter which method you go with.</p>
<p>What I typically run across, though, are views which have sorting (because they were used directly by a report, for instance) but are also used by other views or other procedures with their own sorting.</p>
<p>So as a general rule, I encourage others to do all sorting on the client-side and only on the server when there's reasonable justification for it.</p>
http://stackoverflow.com/questions/326392/multi-bit-database-field/326539#326539-1Answer by Kevin Fairchild for Multi-bit database fieldKevin Fairchild2008-11-28T20:00:52Z2008-11-28T20:00:52Z<p>Unless your database is being stored on a floppy disk, I wouldn't sweat it. Take the advice of the rest here and move on with building the rest of the database.</p>
http://stackoverflow.com/questions/314357/which-event-raise-on-check-change-of-checkbox-in-infragistic-ultragrid/314378#3143781Answer by Kevin Fairchild for Which event raise on check change of checkbox in Infragistic UltraGrid ?Kevin Fairchild2008-11-24T14:58:06Z2008-11-24T14:58:06Z<p>The AfterUpdate event of the checkbox is what you'll want to use.</p>
<p>If you're not able to trigger it, though, try adding this as well:</p>
<pre><code>Private Sub YourGridcontrol_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles YourGridcontrol.MouseDown
YourGridcontrol.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode)
End Sub
Private Sub YourGridcontrol_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles YourGridcontrol.MouseUp
YourGridcontrol.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode)
End Sub
</code></pre>
<p>By default, just toggling the checkbox doesn't seem to trigger an Update. By making it enter/exit edit mode, the AfterUpdate should work as you want.</p>
<p>UPDATE: Or, like Vincent suggested, doing the PerformAction on the CellChange event should work, too. The gist is the same.</p>
http://stackoverflow.com/questions/314114/which-event-raise-on-cell-value-change-in-infragistic-ultragrid/314173#3141731Answer by Kevin Fairchild for Which event raise on cell value change in Infragistic UltraGrid ?Kevin Fairchild2008-11-24T13:54:22Z2008-11-24T13:54:22Z<p>AfterCellUpdate is what you want, but you may need to call:</p>
<ul>
<li>YourGridControl.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode)</li>
<li>YourGridControl.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode)</li>
</ul>
<p>to actually trigger the update, depending on when you want it triggered.</p>
<p>I've noticed that it can sometimes be finicky on when it'll fire off the event, otherwise.</p>
http://stackoverflow.com/questions/302970/old-school-vs-new-school-programmers-problems-and-or-benefits/303211#3032111Answer by Kevin Fairchild for Old School vs New School Programmers Problems and/or BenefitsKevin Fairchild2008-11-19T20:21:11Z2008-11-19T20:21:11Z<p>As always it depends on the environment and company culture. If you work a corporate job that's open 8am-5pm, it doesn't really matter if you prefer nights...</p>
<p>As for the different methodologies, it really just depends on how "on board" with it everyone else is and, ultimately, whether it produces anything. I'm from the Cowboy Coder methodology group, myself, but I have to reign that in a bit when I'm working on a project that requires a lot of collaboration. And no matter how great the methodology is, if it gets in the way of delivering the product on time, no one is going to care.</p>
http://stackoverflow.com/questions/300427/using-an-arbitrary-number-of-parameters-in-t-sql/303079#3030795Answer by Kevin Fairchild for Using an arbitrary number of parameters in T-SQLKevin Fairchild2008-11-19T19:38:50Z2008-11-19T20:09:48Z<p>A basic proof-of-concept... Actual code would be less, but since I don't know your table/field names, this is the full code, so anyone can verify it works, tweak it, etc.</p>
<pre><code>--Search Parameters
DECLARE @SearchString VARCHAR(MAX)
SET @SearchString='Oakland;City;Planning' --Using your example search
DECLARE @Delim CHAR(1)
SET @Delim=';' --Using your deliminator from the example
--I didn't know your table name, so I'm making it... along with a few extra rows...
DECLARE @Projects TABLE (ProjectID INT, ProjectName VARCHAR(200))
INSERT INTO @Projects (ProjectID, ProjectName) SELECT 1, 'Oakland City Planning'
INSERT INTO @Projects (ProjectID, ProjectName) SELECT 2, 'Oakland City Construction'
INSERT INTO @Projects (ProjectID, ProjectName) SELECT 3, 'Skunk Works'
INSERT INTO @Projects (ProjectID, ProjectName) SELECT 4, 'Oakland Town Hall'
INSERT INTO @Projects (ProjectID, ProjectName) SELECT 5, 'Oakland Mall'
INSERT INTO @Projects (ProjectID, ProjectName) SELECT 6, 'StackOverflow Answer Planning'
--*** MAIN PROGRAM CODE STARTS HERE ***
DECLARE @Keywords TABLE (Keyword VARCHAR(MAX))
DECLARE @index int
SET @index = -1
--Each keyword gets inserted into the table
--Single keywords are handled, but I did not add code to remove duplicates
--since that affects performance only, not the result.
WHILE (LEN(@SearchString) > 0)
BEGIN
SET @index = CHARINDEX(@Delim , @SearchString)
IF (@index = 0) AND (LEN(@SearchString) > 0)
BEGIN
INSERT INTO @Keywords VALUES (@SearchString)
BREAK
END
IF (@index > 1)
BEGIN
INSERT INTO @Keywords VALUES (LEFT(@SearchString, @index - 1))
SET @SearchString = RIGHT(@SearchString, (LEN(@SearchString) - @index))
END
ELSE
SET @SearchString = RIGHT(@SearchString, (LEN(@SearchString) - @index))
END
--This way, only a project with all of our keywords will be shown...
SELECT *
FROM @Projects
WHERE ProjectID NOT IN (SELECT ProjectID FROM @Projects Projects INNER JOIN @Keywords Keywords ON CHARINDEX(Keywords.Keyword,Projects.ProjectName)=0)
</code></pre>
<p>I decided to mix a few different answers together into one :-P</p>
<p>This assumes you'll pass in a delimited string list of search keywords (passed in via @SearchString) as a <strong>VARCHAR(MAX)</strong>, which -- realistically -- <strong>you won't run into a limit on for keyword searches</strong>. </p>
<p>Each keyword is broken down from the list and <strong>added into a keyword table.</strong> You'd probably want to add code to remove out duplicate keywords, but it won't hurt in my example. Just slightly less effective, since we only need to evaluate once per keyword, ideally.</p>
<p>From there, <strong>any keyword that isn't a part of the project name removes that project from the list</strong>...</p>
<p>So searching for "Oakland" gives 4 results but "Oakland;City;Planning" gives only 1 result.</p>
<p>You can also change the delimiter, so instead of a semi-colon, it can use a space. Or whatever floats your boat...</p>
<p>Also, because of the joins and what not instead of Dynamic SQL, it doesn't run the risk of SQL Injection like you were worried about.</p>
http://stackoverflow.com/questions/299931/tracking-changes-in-a-sql-server-2005-database/300039#3000391Answer by Kevin Fairchild for Tracking changes in a SQL server 2005 databaseKevin Fairchild2008-11-18T20:32:41Z2008-11-18T20:32:41Z<p>One way I've seen this handled (though I wouldn't recommend it, honestly) is to handle it via stored procedures, passing in the userid/username/whatever as a parameter. The stored procedures would call a logging procedure, which wrote the relevant details in a central log table.</p>
<p>Here's where it got a bit whacky, though...</p>
<p>For INSERTs/UPDATEs, the relevant row(s) were stored in the table as XML data once the INSERT/UPDATE had completed successfully. For DELETEs, the row was stored prior to the DELETE running (though, realistically, they could have gotten it from the DELETE statement's output -- at least with SQL Server 2005).</p>
<p>If I remember correctly, the table only had a couple columns: UserID, DateTime of the logging, Transaction Type (I/U/D), XML data containing the relevant rows, table name, and primary key value (mainly used for quick searching of what records they wanted).</p>
<p>Many ways to skin a cat, though...</p>
<p><strong>My advice is to keep is simple. Expand it out later if/when you need to.</strong></p>
<p>If you have the ability to do so, lock down users to only be able to perform actionable statements on tables via stored procedures and then handle the logging (however you want) from there.</p>
http://stackoverflow.com/questions/299158/sql-action-keyword/299187#2991871Answer by Kevin Fairchild for SQL Action keywordKevin Fairchild2008-11-18T15:58:37Z2008-11-18T16:04:56Z<p>No, you can't use it for that. But you can look at the <a href="http://msdn.microsoft.com/en-us/library/aa214435(SQL.80).aspx" rel="nofollow">Inserted and Deleted</a> tables to see what happened.</p>
<p>A vary basic example would go something like this:</p>
<pre><code>If exists (select * from inserted) and exists (select * from deleted)
--Update happened
If exists (select * from inserted)
--Insert happened
If exists (select * from deleted)
--Delete happened
Else
--Nothing happened
</code></pre>
<p>Realistically, though, it just depends on what you need to do. In some cases, you might just end up joining on these tables by primary key and do various things.</p>
<p>If you post more details in your question about what you're attempting, though, it'd be easier to give a more specific response.</p>
http://stackoverflow.com/questions/298987/tricks-to-staying-positive/299074#2990747Answer by Kevin Fairchild for Tricks to staying positiveKevin Fairchild2008-11-18T15:31:42Z2008-11-18T15:47:22Z<p><strong>Apathy is often an overlooked tool for avoiding negativity.</strong></p>
<p>Detach yourself from the outcome and little things like lack of requirements, 180-degree-turns in business rules, and unrealistic deadlines all float on by...</p>
<p>By not caring about the project, you have plenty of time to focus on other more rewarding pursuits -- like family, friends, and honing your skills.</p>
<p>UPDATE: In case it wasn't clear to some, that was somewhat in jest... But, really, it does have some truth in it.</p>
<p>Find things that make you happy outside of work. When you are too heavily focused on your job, you'll lose perspective. That's not good for you and it's not good for the company. It's all about balance. You can't control the economy, your employers, or your coworkers. Make the best of what you have and don't worry so much :)</p>
http://stackoverflow.com/questions/296146/sql-query-question-select-not-in/296224#2962240Answer by Kevin Fairchild for SQL query question: SELECT ... NOT IN ...Kevin Fairchild2008-11-17T17:19:13Z2008-11-17T17:35:10Z<pre><code>SELECT Reservations.idCustomer FROM Reservations (nolock)
LEFT OUTER JOIN @reservations ExcludedReservations (nolock) ON Reservations.idCustomer=ExcludedReservations.idCustomer AND DATEPART(hour, ExcludedReservations.insertDate) < 2
WHERE ExcludedReservations.idCustomer IS NULL AND Reservations.idCustomer IS NOT NULL
GROUP BY Reservations.idCustomer
</code></pre>
<p>[Update: Added additional criteria to handle idCustomer being NULL, which was apparently the main issue the original poster had]</p>
http://stackoverflow.com/questions/295825/locking-sql-server-to-a-specific-application-on-a-web-server/296176#2961760Answer by Kevin Fairchild for Locking SQL Server to a specific application on a web serverKevin Fairchild2008-11-17T17:03:44Z2008-11-17T17:03:44Z<p>The easiest way is to just lock it down on the user-level. You can run your win/web application under a specific security context that you have the needed rights configured for.</p>
<p>This gives the benefit of forcing users to run your app to interact with SQL and can't just open Enterprise Manager or whatever.</p>
http://stackoverflow.com/questions/295589/what-program-should-i-use-to-mock-up-guis/295635#29563549Answer by Kevin Fairchild for What program should I use to mock up GUIs?Kevin Fairchild2008-11-17T14:06:13Z2008-11-17T14:06:13Z<p>If you have some blank sheets of paper handy, you're halfway there. Just grab some markers, pens, pencils, or crayons and you're ready to rock :)</p>
<p>Check out <a href="http://rads.stackoverflow.com/amzn/click/1558608702" rel="nofollow">Paper Prototyping</a>... It's as simple as it sounds, though. You basically sketch out the form and walk through it with the users to determine how they expect it to behave and that sort of thing.</p>
<p>The benefit of it is that -- unlike with using Visual Studio or something to make a mock form -- users/management don't confuse the looks of the interface with the design being "done". The risk you run with really nice looking and realistic mock-ups is that it gives the impression that all you have left is to add a little bit of code here or there and it'll be ready.</p>
<p>Also, doing it on paper helps keep things flexible. If the user wants a dramatic change, you just pull out another sheet of paper -- instead of having to design the GUI in a program again.</p>
<p>Just a thought.</p>
http://stackoverflow.com/questions/911145/sql-optimization-queryComment by Kevin Fairchild on SQL Optimization QueryKevin Fairchild2009-05-26T15:03:31Z2009-05-26T15:03:31ZExample data for these tables would probably be helpful...http://stackoverflow.com/questions/678430/isnull-not-working-in-tsql-select/678465#678465Comment by Kevin Fairchild on ISNULL not working in TSQL SelectKevin Fairchild2009-03-24T18:12:20Z2009-03-24T18:12:20Z@monkeypushbutton, I just made an update to the code. Should be ok now. Let me know if you still have trouble with it. To test it, just get rid of the Create Table, Insert, and Drop Table calls and change #Penalty to dbo.Penaltyhttp://stackoverflow.com/questions/678430/isnull-not-working-in-tsql-select/678465#678465Comment by Kevin Fairchild on ISNULL not working in TSQL SelectKevin Fairchild2009-03-24T17:54:23Z2009-03-24T17:54:23Z@casperOne, try it. Works just fine for me :)http://stackoverflow.com/questions/163131/prevent-legacy-function-calls-in-vb-netComment by Kevin Fairchild on Prevent Legacy Function Calls In VB.NETKevin Fairchild2009-03-05T16:22:36Z2009-03-05T16:22:36Z@MarkJ, mainly so everyone can be in the habit of switching from stuff likely to be depreciated to the newer VB.NET equivalent. This will likely give us less issues later down the road for upgrades or for transitioning others to maintain the code.http://stackoverflow.com/questions/558858/coding-stored-procedure-for-search-screen-with-multiple-optional-criteria/558890#558890Comment by Kevin Fairchild on Coding stored procedure for search screen with multiple, optional criteriaKevin Fairchild2009-02-17T22:39:27Z2009-02-17T22:39:27ZUntil you start going to the direction of parameters determining the joins you use, this method is still fairly good on performance, @muerte And, as a general rule, performance is expendable -- maintainability/readability isn't ;)http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp/507769#507769Comment by Kevin Fairchild on ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2009-02-03T17:00:53Z2009-02-03T17:00:53ZI doubt linking to a single .EXE would work, but your suggestion has at least narrowed things down a bit... Drives me nuts, though. Using the same credentials, it should either work using full desktop and RemoteApp or not work. But working with one way and not the other is a pain...http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp/507769#507769Comment by Kevin Fairchild on ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2009-02-03T16:47:23Z2009-02-03T16:47:23ZI went ahead and gave you the bounty, since your solution at least got it to load. Now I just need to figure out a way to handle that first launch... Logging in as the user probably isn't practical.http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp/507769#507769Comment by Kevin Fairchild on ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2009-02-03T16:41:44Z2009-02-03T16:41:44ZYes. The application DOES start via that method. The main limitation is that it only works if the user has started the app at least once already, I guess... But, still, I guess it's a start...http://stackoverflow.com/questions/262547/reasons-not-to-use-an-auto-incrementing-number-for-a-primary-key/265325#265325Comment by Kevin Fairchild on Reasons not to use an auto-incrementing number for a primary keyKevin Fairchild2009-01-30T13:38:28Z2009-01-30T13:38:28Z...hence the stipulation of "where certain fields provide uniqueness". I don't believe it's a one-or-the-other type of thing.http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp/488264#488264Comment by Kevin Fairchild on ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2009-01-28T20:49:47Z2009-01-28T20:49:47ZUnfortunately, there don't seem to be any event logs generated for the error. Just events you'd see associated with any other typical login.http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp/488222#488222Comment by Kevin Fairchild on ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2009-01-28T20:29:22Z2009-01-28T20:29:22ZKeep in mind, this is as a RemoteApp as opposed to a full remote desktop session, which works just fine.http://stackoverflow.com/questions/106164/clickonce-online-only-application-as-a-ts-remoteapp/484559#484559Comment by Kevin Fairchild on ClickOnce Online-Only Application as a TS RemoteAppKevin Fairchild2009-01-27T19:30:37Z2009-01-27T19:30:37ZWhen run as a remote desktop session, the ClickOnce deployment does work, however... When run as a RemoteApp, there's a quick flash on the client system of it checking for prerequisites and then nothing. http://stackoverflow.com/questions/462886/invalidoperationexceptionComment by Kevin Fairchild on InvalidOperationExceptionKevin Fairchild2009-01-20T21:01:37Z2009-01-20T21:01:37ZI've run into this error a bit, myself. Can anyone confirm whether 3.5 SP1 fixes this or, at the very least, won't interfere with the 2.0 SP1 hotfix?http://stackoverflow.com/questions/149718/pitfalls-gotchas-of-click-once-smart-client-deployment-in-net/149741#149741Comment by Kevin Fairchild on pitfalls/gotchas of click-once/smart-client deployment in .NETKevin Fairchild2009-01-09T20:11:08Z2009-01-09T20:11:08ZRather than use Try/Catch while attempting to get the deployed version number, wrap it in an "If System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed Then . . ." Much cleaner. If it's network deployed, you can get the version. If not, you can't. Easy-peasy :)http://stackoverflow.com/questions/285429/terminal-services-get-client-name-while-running-as-administrator/289229#289229Comment by Kevin Fairchild on Terminal Services: Get Client Name While Running As AdministratorKevin Fairchild2008-12-30T15:25:19Z2008-12-30T15:25:19ZClean as in working and minimal use of sketchy calls using ported VB6 code ;)