User Gern Blandston - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:16:06Z http://stackoverflow.com/feeds/user/6624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/484516/arguments-for-against-business-logic-in-stored-procedures 2 Arguments for/against Business Logic in stored procedures Gern Blandston 2009-01-27T18:04:23Z 2009-12-08T04:14:34Z <p>What are the arguments for and against business logic in stored procedures? </p> http://stackoverflow.com/questions/855158/how-to-check-if-iis-compression-with-https-ssl-is-working 0 How to check if IIS Compression with HTTPS/SSL is working? Gern Blandston 2009-05-12T22:19:56Z 2009-11-30T11:00:04Z <p>I've setup a website for IIS compression, but it doesn't appear to be working for HTTPS, just HTTP. Is there something that needs to be configured to get this to work, or does this not work in IIS? What options are there?</p> <p>UPDATE: According to <a href="http://software.intel.com/en-us/articles/http-compression-for-web-applications/" rel="nofollow">this</a> the compression is occurring before the encryption. If compression is occurring for SSL requests, where do I see it? </p> <p>UPDATE2: I went back to the metabase.xml file and discovered that the changes I made were gone. Here's what I had:</p> <pre><code>HcDynamicCompressionLevel="9" HcFileExtensions="htm html js css txt" HcOnDemandCompLevel="10" HcPriority="1" HcScriptFileExtensions="asp dll aspx exe" </code></pre> <p>I'm wondering if the in-memory metabase overwrote the changes I made before I was able to run IISRESET /RESTART??</p> <p>Thanks!</p> <p>Chris</p> http://stackoverflow.com/questions/1405337/console-application-questions-build-release-not-loading-solution-file 0 Console application questions (build release/ not loading solution file) Gern Blandston 2009-09-10T13:33:36Z 2009-11-30T10:00:03Z <p>I've got a couple questions about .net console applications.</p> <p>I created the console app, and included a solution file during the create, but when I open the solution file, it only shows the project, not the solution. Why doesn't the solution load in the solution explorer?</p> <p>Also, I don't seem to be able to build the project in 'Release' mode; only debug. I switched the 'Compile/Configuration' and 'Debug/Configuration' to Release, but it doesn't build the 'bin\release' folder.</p> <p>Any pointers to docs for this would be appreciated.</p> <p>Thank you</p> http://stackoverflow.com/questions/530320/how-to-execute-spsenddbmail-while-limiting-permissions 0 How to execute sp_send_dbmail while limiting permissions Gern Blandston 2009-02-09T22:23:59Z 2009-11-25T19:29:59Z <p>Is there a way to provide access to users in my database to execute <strong><code>msdb.dbo.sp_send_dbmail</code></strong> without needing to add them to the MSDB database and the DatabaseMailUserRole?</p> <p>I've tried this:</p> <pre><code>ALTER PROCEDURE [dbo].[_TestSendMail] ( @To NVARCHAR(1000), @Subject NVARCHAR(100), @Body NVARCHAR(MAX) ) WITH EXECUTE AS OWNER AS BEGIN EXEC msdb.dbo.sp_send_dbmail @profile_name = N'myProfile', @recipients = @To, @subject = @Subject, @body = @Body END </code></pre> <p>But I get this error:</p> <pre><code>The EXECUTE permission was denied on the object 'sp_send_dbmail', database 'msdb', schema 'dbo'. </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1630587/creating-a-mock-dao-object-that-returns-my-entity-class-for-testing 0 Creating a mock DAO object that returns my Entity class for testing? Gern Blandston 2009-10-27T12:50:24Z 2009-10-27T13:09:35Z <p>I'm looking for a little jump start with mock objects.</p> <p>I have a class called ProjectDAO that has a method called 'GetById' that will load and return a 'Project' object after tripping to the database. GetById takes a single string argument.</p> <pre><code>Public Interface IEntityDAO Function GetByID(ByVal projectNumber As String) As Project End Interface Public Class ProjectDAO Inherits DAOBase Implements IEntityDAO Public Function GetByID(ByVal projectNumber As String) As Project Implements IEntityDAO.GetByID Dim Proj As New Project Dim parms As SqlParameter() = {New SqlParameter("ProjectNumber", projectNumber)} Using dt As DataTable = GetTable("Project_GetByID", parms) If (dt Is Nothing) OrElse dt.Rows.Count = 0 Then Throw New ArgumentException("Invalid Project Number!") Else MapData(Proj, dt) End If End Using Return Proj End Function Public Function MapData(ByRef proj As Business.Project, ByVal dt As DataTable) As Boolean proj.ProjectNumber = CType(dt.Rows(0)("ProjectNumber"), String) proj.ProjectName = CType(dt.Rows(0)("ProjectName"), String) End Function End Class Public Class Project Inherits EntityBase Private _projectNumber As String Public Property ProjectNumber() As String Get Return _projectNumber End Get Set(ByVal Value As String) _projectNumber = Value End Set End Property Private _projectName As String Public Property ProjectName() As String Get Return _projectName End Get Set(ByVal Value As String) _projectName = Value End Set End Property </code></pre> <p>End Class</p> <p>So far, I've gotten this far with NMock2:</p> <pre><code>&lt;Test()&gt; _ Public Sub testProjectDAO() Dim mocks As New Mockery() Dim DAO = mocks.NewMock(GetType(IEntityDAO)) ' tried a bunch of stuff here that didn't work End Sub </code></pre> <p>How do I setup an NMock2 mock of the IEntityDAO interface so that I can return a Project object to test with? </p> <p>Thanks!</p> <p>Chris</p> http://stackoverflow.com/questions/1579843/basic-nmock-database-examples-for-crud-application 0 Basic NMock database examples for CRUD application Gern Blandston 2009-10-16T19:07:09Z 2009-10-16T19:26:09Z <p>I'm looking for some basic examples of using NMock2 to mock database calls for a CRUD application.</p> <p>Thanks,</p> <p>Chris</p> http://stackoverflow.com/questions/1574975/advantages-of-using-sqldatareader-over-a-reader-that-implements-idatareader 0 Advantages of using SQLDataReader over a reader that implements IDatareader? Gern Blandston 2009-10-15T20:49:43Z 2009-10-16T12:46:00Z <p>What are the advantages of using a SQLDataReader as opposed to a reader that just implements IDatareader if I'm using SQL Server >= 2005?</p> <p>Does the SQLDatareader simply have more functionality to choose from, or are there performance improvements using the SQLDatareader? </p> <p>Any articles that discuss this would be appreciated.</p> <p>Thanks!</p> <p>Chris</p> http://stackoverflow.com/questions/1574221/where-should-i-be-creating-the-entity-objects 1 Where should I be creating the entity objects? Gern Blandston 2009-10-15T18:31:59Z 2009-10-16T01:51:28Z <p>I have an entity class and an entity DAO class. </p> <p>Should it be the responsibility of the DAO class to create instances of the entity class, or should there be an entity creator/manager class that uses the DAO class only to get the data from the database to create the entity class. </p> <p>Thanks,</p> <p>Chris</p> http://stackoverflow.com/questions/1122117/sql-dynamic-pivot-how-to-order-columns 0 SQL Dynamic Pivot - how to order columns Gern Blandston 2009-07-13T21:16:28Z 2009-10-06T12:00:01Z <p>I'm working on a dynamic pivot query on a table that contains:</p> <ul> <li>OID - OrderID </li> <li>Size - size of the product</li> <li>BucketNum - the order that the sizes should go</li> <li>quantity - how many ordered</li> </ul> <p>The size column contains different sizes depending upon the OID.</p> <p>So, using the code found <a href="http://www.sqlprof.com/blogs/sqldev/archive/2008/04/12/pivots-with-dynamic-columns-in-sql-server-2005-2008.aspx" rel="nofollow">here</a>, I put this together:</p> <pre><code>DECLARE @listCol VARCHAR(2000) DECLARE @query VARCHAR(4000) SELECT @listCol = STUFF(( SELECT distinct '], [' + [size] FROM #t FOR XML PATH('') ), 1, 2, '') + ']' SET @query = 'SELECT * FROM (SELECT OID, [size], [quantity] FROM #t ) src PIVOT (SUM(quantity) FOR Size IN (' + @listCol + ')) AS pvt' EXECUTE ( @query ) </code></pre> <p>This works great except that the column headers (the sizes labels) are not in the order based upon the bucketnum column. The are in the order based upon the sizes. </p> <p>I've tried the optional Order By after the pivot, but that is not working.</p> <p>How do I control the order in which the columns appear?</p> <p>Thank you</p> http://stackoverflow.com/questions/1519873/does-the-number-of-columns-in-a-view-impact-performance 2 Does the number of columns in a view impact performance? Gern Blandston 2009-10-05T12:45:27Z 2009-10-05T17:59:23Z <p>I have a view that pulls about 200 columns from a table, no joins. The procs that use the view only use about 10 columns from it. Does having the extra 190 columns have a significant impact on performance using the view?</p> <p>EDIT: Just to clarify based on original questioner's comment, the query in his proc only uses 10 columns out of 200. The question is, does that still cause performance degradation because the underlying view contains 200 columns, or does the optimizer know to only use the 10 columns and ignores the view's knowledge of 190 others?</p> <p>Thanks,</p> <p>Chris</p> http://stackoverflow.com/questions/1488410/webservice-entity-objects-or-datareader-for-my-winform-app 0 Webservice/Entity objects or datareader for my winform app? Gern Blandston 2009-09-28T17:49:44Z 2009-09-29T01:44:29Z <p>Is it best to use a webservice to pull data from a database and load it into my entity object, then send the entity objects to my winform app? </p> <p>Will this make any performance difference over going direct to the database and pulling a datareader back to the winform client, then loading the entities on the client? Some of the users will be in China accessing a database in the US.</p> <p>Are there better options?</p> <p>Thanks</p> http://stackoverflow.com/questions/1440522/what-happens-to-the-transaction-in-this-sql-if-its-not-committed 1 What happens to the transaction in this SQL if it's not committed? Gern Blandston 2009-09-17T18:23:25Z 2009-09-17T18:28:02Z <p>If I have the following SQL:</p> <pre><code>BEGIN TRANSACTION SELECT val FROM myTable </code></pre> <p>and don't follow it up with a commit, what happens with the TRANSACTION? Does it depend upon the context/scope that it was executed (e.g. in a proc, in mgt studio)?</p> <p>Is there some place to see if there are transactions open that have not been committed/rolled back in a database?</p> <p>Thanks,</p> <p>Chris</p> http://stackoverflow.com/questions/1413296/how-to-pass-variable-from-grid-to-new-page-without-loading-the-first-grid-again 0 How to pass variable from grid to new page without loading the first grid again Gern Blandston 2009-09-11T21:11:46Z 2009-09-12T03:36:51Z <p>I have a page that loads data into a grid. When the user selects one of the rows of the grid, I need to send them to another page and open that second page based upon the ID selected in the first page.</p> <p>Currently, I'm posting back to the first page, building the grid, getting the ID from the row, stuffing it in session, then response.redirecting to the second page.</p> <p>I'd like to avoid reloading the first page just to get the ID value, but I don't want to put the ID in a querystring.</p> <p>I don't want to use server.transfer because I want the URL to switch to the second page.</p> <p>Any suggestions would be appreciated!</p> http://stackoverflow.com/questions/596133/how-to-get-business-objects-and-ui-controls-to-talk-to-each-other 1 How to get business objects and UI controls to talk to each other Gern Blandston 2009-02-27T18:59:44Z 2009-09-11T16:21:46Z <p>I've got a person object with a name and age property that implements INotifyPropertyChanged. I want to hook this object up to an ASP.NET form so that the 'name' and 'age' properties bind to textboxes in a way that, when changes happen in either place (in the control or in the object) the other will get updated.</p> <p>Do I create an intermediary class that listens to each textbox change events and the objects change events and handle the updates between them? What's the best way to do this?</p> <p>I'm unclear on how to get business objects and the UI talking to each other.</p> http://stackoverflow.com/questions/164174/opinions-regarding-case-complete-or-use-case-software-competitors 3 Opinions regarding 'Case Complete' or Use Case software competitors Gern Blandston 2008-10-02T19:40:43Z 2009-08-24T16:41:20Z <p>Have you had any good/bad experiences with <a href="http://www.casecomplete.com/" rel="nofollow">Case Complete</a>? Are there Use Case creation products like it that you would recommend?</p> <p>Thank you</p> http://stackoverflow.com/questions/1302465/database-backup-differential-file-size-question 1 Database backup - differential file size question Gern Blandston 2009-08-19T20:30:34Z 2009-08-19T20:48:01Z <p>For my backup plan for SQL Server 2005, I want to do a full on Sunday:</p> <pre><code>BACKUP DATABASE myDatabase TO DISK = 'D:\Database Backups\myDatabase_full.bak' WITH FORMAT GO </code></pre> <p>Then I want to do a differential nightly the rest of the week:</p> <pre><code>BACKUP DATABASE myDatabase TO DISK = 'D:\Database Backups\myDatabase_Diff.bak' WITH DIFFERENTIAL GO </code></pre> <p>My assumption was that if there was little/no activity in the database, then the differential would not increase in size (or wouldn't increase by much).</p> <p>However, when I run the differential backup above (with little or no activity), I'm seeing the differential backup increase my megs at a time. Why is it increasing like that? </p> <p>Thanks</p> http://stackoverflow.com/questions/451095/exception-that-goes-away-with-clean-rebuild-how-to-diagnose-prevent 0 Exception that goes away with Clean/Rebuild. How to diagnose/prevent? Gern Blandston 2009-01-16T16:45:11Z 2009-08-12T13:00:01Z <p><em>Pre-Problem: our office was hit by a worm due to a corporate patching oversight, and the boys in the lab repaved my machine. I needed to re-install all my development tools (Visual Studio 2005, SP1, and the Web Application Project Setup patch) again. The following problem did not occur before this event.</em></p> <p>I've been working on an ASP.NET web application project for several months now. I've been editing, debugging, etc without a problem. Then, I added a single line of code, ran it in Debug and got this error:</p> <pre><code>System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. System.IO.FileLoadException: The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047) </code></pre> <p>I uncommented the new code, built the project and ran in debug again, but got the same error.</p> <p>New Code:</p> <p><code>Me.frm.btnSubmitChanges.Attributes.Add("onclick", "javascript:return validateSubmit();")</code></p> <p>The only way I've been able to fix this is to Clean, then Rebuild the project. I haven't been able to trap where it's happening using breakpoints.</p> <p>It's happened a couple times in the last few days. What should I be looking at to fix this?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1188303/multiple-sqlcommand-executereader-calls-or-do-it-once-with-datareader-nextresult 0 Multiple SQlCommand.ExecuteReader calls or do it once with datareader.NextResult()? Gern Blandston 2009-07-27T13:58:13Z 2009-07-30T15:17:16Z <p>I'm using a SqlDataReader to populate an entity in a Winform app. The entity class has several foreign key attributes in the database that I want to setup as properties in the entity class. Each property will be of type 'Attribute' with an ID &amp; Description property. </p> <p>Some of the users of the system are far from the database, so data access performance is a serious consideration.</p> <p>I could either execute the SqlCommand.ExecuteReader multiple times (once for each attribute) against a stored proc that returns a single resultset, or I could execute the SqlCommand.ExecuteReader once against a stored proc that returns multiple result sets and use the SqlDataReader.NextResult to move through them and setup the attributes.</p> <p>If I loop through with .NextResult, I get into some issues with making sure the stored proc and the property assignment looping are aligned. If the order of SELECT statements in the proc change order, then the assignment order in the winform app would get messed up.</p> <p>If the SqlDataReader goes back to the database for each read anyway, is there much time added executing the SqlCommand.ExecuteReader? Doing an ExecuteReader for each attribute would make things clearer on the assignment side.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1178108/datareader-or-dataset-in-winform-with-long-trips-to-database 0 Datareader or Dataset in Winform with long trips to database? Gern Blandston 2009-07-24T14:36:12Z 2009-07-28T15:11:55Z <p>I've got a Winform app that will be used in the US and China. The SQL Server 2005 database is in the US, so the data access is going to be slower for the people in China. I'm deciding between using a DataReader and a Dataset for best performance. The data will immediately be loaded into business objects upon retrieval.</p> <p>Question: Which performs better (DataReader/DataSet) pulling data from a database that's far away? I have read that the DataReader goes back to the database for each .Read(), so if the connection is slow to begin with, will the DataSet be a better choice here?</p> <p>Thanks</p> http://stackoverflow.com/questions/1180905/how-to-map-foreign-key-attribute-tables-to-a-business-entity 0 How to map foreign key attribute tables to a business entity Gern Blandston 2009-07-25T01:30:12Z 2009-07-25T01:43:26Z <p>I have a table in a database that I'm mapping to a main entity class. The table has some columns that hold foreign key values to other attribute tables. </p> <p>How do I map these to the business classes? Do I create a new class for every attribute table and have the primary class hold these as properties? </p> http://stackoverflow.com/questions/1172684/strategy-for-keeping-semi-static-data-fresh 4 Strategy for keeping semi-static data fresh Gern Blandston 2009-07-23T15:42:17Z 2009-07-25T00:18:59Z <p>I'm working on a winform app that will be used by groups in the US and overseas that replaces an existing app built with older technologies.</p> <p>Performance of the old app overseas is pretty slow due to excessive calls back to the database server in the US, so I'd like to cache as much stuff on the client as possible. </p> <p>What is the best way to cache data for things that don't change very often - but may? How do I keep the data from getting stale without pulling it entirely on each load?</p> http://stackoverflow.com/questions/1160016/how-to-maintain-multiple-code-development-paths 2 How to maintain multiple code development paths? Gern Blandston 2009-07-21T15:40:19Z 2009-07-21T15:54:57Z <p>I'm working on an ASP.NET app that uses VSS for source control. WE have a PROD server and TEST server. As things get built, they're published to the TEST server for user testing. Once accepted, they're moved to the PROD server.</p> <p>I need to work on some new functionality in a sandbox without affecting the existing build in TEST. I don't want what I'm working on to get mixed in with the code base that's TEST code already published because I need to be able to make fixes to TEST code without worrying about what I'm doing in the sandbox.</p> <p>How do you keep the TEST &amp; sandbox environments exclusive? </p> <p>Thanks</p> http://stackoverflow.com/questions/1159055/use-temp-variable-or-inline-in-this-example 2 Use temp variable or inline in this example? Gern Blandston 2009-07-21T13:05:00Z 2009-07-21T14:56:14Z <p>I'm loading an ASP.NET dropdown list. </p> <p>Is there any advantage to doing this::</p> <pre><code> Private Sub LoadSeasonsListbox(ByVal seasons As List(Of Season)) Dim li As ListItem For Each s As Season In seasons li = New ListItem(s.SeasonDescription, s.SeasonCodeID) frm.SeasonsList.Items.Add(li) Next End Sub </code></pre> <p>over this:</p> <pre><code>Private Sub LoadSeasonsListbox(ByVal seasons As List(Of Season)) For Each s As Season In seasons frm.SeasonsList.Items.Add(New ListItem(s.SeasonDescription, s.SeasonCodeID)) Next End Sub </code></pre> http://stackoverflow.com/questions/1139358/ui-advice-how-to-design-a-form-with-a-lot-of-data 6 UI Advice: how to design a form with a lot of data Gern Blandston 2009-07-16T18:19:22Z 2009-07-16T18:46:25Z <p>I'm re-writing an app that is a data-entry tool. The existing app is in Access and consists of a form with multiple grids, with each grid containing many columns that requires the user to scroll horizontally in order to view columns.</p> <p>The current grids on the form are layed-out heirarchically in parent-child relationships. Top grid represents projects, grid below that represents the SKUs in the selected project, the grid below that represents season data (pricing, shipping info, etc) for the selected SKU above.</p> <p>I'm looking for advice regarding good UI design principles for this kind of app. How do I design a form that gives the user the flexibility to see all columns for the data on the form without needing to scroll so much?</p> <p>What are some good online resources for UI principles for business apps?</p> <p>Thanks!</p> http://stackoverflow.com/questions/782244/log4net-logging-what-have-you-found-to-be-useful 11 Log4net/Logging - What have you found to be useful? Gern Blandston 2009-04-23T15:24:37Z 2009-07-07T14:56:59Z <p>I just started using Log4Net and was looking to see what you have found to be useful in your logging experiences.</p> <p>What types of things have you found to be useful to log; what ended up being just noise; when do you use the different logging levels (DEBUG, INFO, etc); do you have a standard format for each log entry; are there things you ALWAYS log? </p> <p>Any pitfalls? Good articles on logging in general?</p> <p>Update: Where do you log to? What Appenders and why? </p> <p>Thank you!</p> http://stackoverflow.com/questions/1087402/creating-batched-sql-statements 0 Creating batched sql statements Gern Blandston 2009-07-06T14:50:46Z 2009-07-06T17:03:52Z <p>I have a small job that takes a text file of email/zip codes and inserts them into a sql server 2005 table. It reads each line of the source file, checks to make sure that it parses into a valid email address/zip code, creates a sql insert command, adds it to a string builder and eventually executes it. I want to do a single execute instead of individual sql calls as there will possibly be several thousand inserts.</p> <p>This works, but I'd like to know if this is a bad approach. What's the best practice here?</p> <pre><code>Dim SqlString As String = "insert into [CollectedEmail] values('{0}','{1}');" Do Until sourceFile.Peek = -1 line = sourceFile.ReadLine If line.Length &gt; 0 Then Dim emailAddress As String = Trim(line.Substring(0, EmailLength)) Dim zipcode As String = Trim(line.Substring(EmailLength + 2, ZipCodeLength)) If CVal.validEmail(emailAddress) AndAlso CVal.validZip(zipcode) Then SQL.AppendLine(String.Format(SqlString, emailAddress, zipcode)) ElseIf CVal.validEmail(emailAddress) Then SQL.AppendLine(String.Format(SqlString, emailAddress, "")) Else badAddresses.WriteLine(emailAddress) End If End If Loop InsertToDatabase(SQL.ToString) </code></pre> <p>Thank you</p> http://stackoverflow.com/questions/180283/datareader-or-dataset-when-pulling-multiple-recordsets-in-asp-net 5 DataReader or DataSet when pulling multiple recordsets in ASP.NET Gern Blandston 2008-10-07T20:32:55Z 2009-06-21T11:02:40Z <p>I've got an ASP.NET page that has a bunch of controls that need to be populated (e.g. dropdown lists).</p> <p>I'd like to make a single trip to the db and bring back multiple recordsets instead of making a round-trip for each control.</p> <p>I could bring back multiple tables in a DataSet, or I could bring back a DataReader and use '.NextResult' to put each result set into a custom business class.</p> <p>Will I likely see a big enough performance advantage using the DataReader approach, or should I just use the DataSet approach?</p> <p>Any examples of how you usually handle this would be appreciated.</p> http://stackoverflow.com/questions/983291/how-to-read-this-regular-expression-pattern 2 How to read this regular expression pattern? Gern Blandston 2009-06-11T19:59:17Z 2009-06-12T08:50:44Z <pre><code> [^\x20-\x7E] </code></pre> <p>I saw this pattern used for a regular expression in which the goal was to remove non-ascii characters from a string. What does it mean?</p> http://stackoverflow.com/questions/978074/sql-where-excluding-records-using-and-and-not 0 SQL WHERE excluding records using AND and NOT Gern Blandston 2009-06-10T20:49:51Z 2009-06-10T20:57:05Z <p>Here's a query I'm working on:</p> <pre><code>SELECT TBL_SUB_KEY AS port , poe.[TBL_COMPANY] , poe.[TBL_DIVISION_1] FROM dbo.TMVKTAB AS poe WHERE ( TBL_NUMBER = '8A' ) AND ( TBL_SUB_KEY &lt;&gt; '' ) AND ( poe.[TBL_COMPANY] &lt;&gt; '011' AND poe.[TBL_DIVISION_1] &lt;&gt; '11' ) </code></pre> <p>What I want returned are all the records that are <strong>not</strong> in Company = '011'/Division_1' = '11'.</p> <p>I thought combining the company/division in the () would achieve this, but it does not. It eliminates all the company '011' records and it eliminates all division '11' records.</p> <p>However, when I do this:</p> <pre><code>SELECT TBL_SUB_KEY AS port , poe.[TBL_COMPANY] , poe.[TBL_DIVISION_1] FROM dbo.TMVKTAB AS poe WHERE ( TBL_NUMBER = '8A' ) AND ( TBL_SUB_KEY &lt;&gt; '' ) AND NOT ( poe.[TBL_COMPANY] = '011' AND poe.[TBL_DIVISION_1] = '11' ) </code></pre> <p>it seems to pull the correct results. Why is this?</p> http://stackoverflow.com/questions/282830/looking-for-vb-net-open-source-projects-to-learn-from 6 Looking for VB.NET open source projects to learn from Gern Blandston 2008-11-12T02:33:26Z 2009-06-10T14:13:49Z <p>I'm looking for some small, vb.net open source projects that make good use of unit testing. Similar to <a href="http://stackoverflow.com/questions/236156/could-you-recommend-any-open-source-projects-where-the-source-is-extensively-te">this</a> question, but for VB.NET. </p> <p>"I would like to improve my unit-testing skills by reading, examining real-world code. Could you recommend any open source projects where the source is extensively tested with unit tests?"</p> <p>Thanks!</p> <p>UPDATE: Also asked the question for C# <a href="http://stackoverflow.com/questions/287646/looking-for-small-open-source-c-project-with-extensive-unit-testing">here</a></p> http://stackoverflow.com/questions/1574975/advantages-of-using-sqldatareader-over-a-reader-that-implements-idatareader/1575039#1575039 Comment by Gern Blandston on Advantages of using SQLDataReader over a reader that implements IDatareader? Gern Blandston 2009-10-16T08:55:32Z 2009-10-16T08:55:32Z Thanks, Johannes. Why should SQLDataReader be faster? http://stackoverflow.com/questions/1519873/does-the-number-of-columns-in-a-view-impact-performance Comment by Gern Blandston on Does the number of columns in a view impact performance? Gern Blandston 2009-10-08T12:28:28Z 2009-10-08T12:28:28Z I ran two SELECTs against the view, 1 with 10 columns, 1 with all columns and watched in Profiler. They both had the same number or reads, but the duration and CPU were both much smaller for the query with fewer columns selected. http://stackoverflow.com/questions/1519873/does-the-number-of-columns-in-a-view-impact-performance Comment by Gern Blandston on Does the number of columns in a view impact performance? Gern Blandston 2009-10-05T13:54:48Z 2009-10-05T13:54:48Z They are stored procedures on the server called by asp.net app. http://stackoverflow.com/questions/1519873/does-the-number-of-columns-in-a-view-impact-performance/1519914#1519914 Comment by Gern Blandston on Does the number of columns in a view impact performance? Gern Blandston 2009-10-05T12:58:23Z 2009-10-05T12:58:23Z Are 190 superfluous columns in a view that are not referenced a bad thing? http://stackoverflow.com/questions/1519873/does-the-number-of-columns-in-a-view-impact-performance/1519884#1519884 Comment by Gern Blandston on Does the number of columns in a view impact performance? Gern Blandston 2009-10-05T12:54:29Z 2009-10-05T12:54:29Z I should clarify. I'm only using 10 columns of the view. Does this mean that the view only returns those 10 columns, or does it somehow pull all 200 and then sends me just the 10? http://stackoverflow.com/questions/1178108/datareader-or-dataset-in-winform-with-long-trips-to-database/1183895#1183895 Comment by Gern Blandston on Datareader or Dataset in Winform with long trips to database? Gern Blandston 2009-07-26T20:45:26Z 2009-07-26T20:45:26Z How would I compress the query result on the server? http://stackoverflow.com/questions/1122117/sql-dynamic-pivot-how-to-order-columns/1122212#1122212 Comment by Gern Blandston on SQL Dynamic Pivot - how to order columns Gern Blandston 2009-07-13T21:54:00Z 2009-07-13T21:54:00Z Thanks, Joel. I hadn't seen it, but I'll check it out! http://stackoverflow.com/questions/1122117/sql-dynamic-pivot-how-to-order-columns/1122164#1122164 Comment by Gern Blandston on SQL Dynamic Pivot - how to order columns Gern Blandston 2009-07-13T21:30:13Z 2009-07-13T21:30:13Z Ahhhhh! The 'MIN(BucketNum)' bit was what I needed!! Thank you, thank you! http://stackoverflow.com/questions/1087402/creating-batched-sql-statements/1087415#1087415 Comment by Gern Blandston on Creating batched sql statements Gern Blandston 2009-07-06T15:08:40Z 2009-07-06T15:08:40Z Sorry; done. That syntax is pretty cool! Since I can't do that, is my approach considered 'acceptable'? http://stackoverflow.com/questions/1087402/creating-batched-sql-statements/1087417#1087417 Comment by Gern Blandston on Creating batched sql statements Gern Blandston 2009-07-06T15:00:40Z 2009-07-06T15:00:40Z Is the correct approach then to cleanse the original source file into another flat file and then use the SqlBulkCopy class? http://stackoverflow.com/questions/14530/linq-to-sql-vs-stored-procedures/14549#14549 Comment by Gern Blandston on LINQ-to-SQL vs stored procedures? Gern Blandston 2009-06-27T14:00:02Z 2009-06-27T14:00:02Z @Chris: the security issue you speak of is easily solved using views and roles. http://stackoverflow.com/questions/978074/sql-where-excluding-records-using-and-and-not/978106#978106 Comment by Gern Blandston on SQL WHERE excluding records using AND and NOT Gern Blandston 2009-06-10T21:05:08Z 2009-06-10T21:05:08Z Doh! I tried the OR, and I <i>thought</i> I was getting incorrect results. Tried it again and you are correct. http://stackoverflow.com/questions/897989/using-fiddler-to-check-iis-compression/898116#898116 Comment by Gern Blandston on Using Fiddler to check IIS Compression Gern Blandston 2009-05-22T14:32:30Z 2009-05-22T14:32:30Z Thanks. I've seen that, too. I don't understand why the page is showing compressed on port80software.com, but not in fiddler. http://stackoverflow.com/questions/897989/using-fiddler-to-check-iis-compression Comment by Gern Blandston on Using Fiddler to check IIS Compression Gern Blandston 2009-05-22T14:30:58Z 2009-05-22T14:30:58Z I'm looking at an .ASHX page that returns XML (showing 'content type text/xml' in Fiddler). http://stackoverflow.com/questions/897989/using-fiddler-to-check-iis-compression/898075#898075 Comment by Gern Blandston on Using Fiddler to check IIS Compression Gern Blandston 2009-05-22T14:14:26Z 2009-05-22T14:14:26Z Cross posted an updated as you were writing this. Transformer indicates 'No Compression'