User marc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:33:50Z http://stackoverflow.com/feeds/user/12260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72810#72810 28 Answer by marc for What development book made the most impact on you as a developer? marc 2008-09-16T14:19:36Z 2009-08-05T20:46:10Z <p><a href="http://rads.stackoverflow.com/amzn/click/0321334876" rel="nofollow">Effective C++ by Scott Meyers</a>. It's an oldie, but by far the best book on coding I've ever read.</p> <p><img src="https://images-na.ssl-images-amazon.com/images/I/51WCFVFEB2L.%5FSL75%5F.jpg" alt="Effective C++ by Scott Meyers" /> </p> http://stackoverflow.com/questions/175881/sql-server-express-2008-install-side-by-side-w-sql-2005-express-fails 8 SQL Server Express 2008 Install Side-by-side w/ SQL 2005 Express Fails marc 2008-10-06T19:46:38Z 2009-06-15T22:59:17Z <p>When I try to install a new instance of SQL Server 2008 Express on a development machine with SQL 2005 Express already up and running, the install validation fails because the "SQL 2005 Express tools" are installed and I'm told to remove them.</p> <p><strong>What exactly does that mean?</strong> </p> <p>After reading this article:</p> <p><a href="http://www.asql.biz/Articoli/SQLX08/Art1_5.aspx" rel="nofollow">http://www.asql.biz/Articoli/SQLX08/Art1_5.aspx</a> </p> <p>I uninstalled the 2005 version of the SQL Management Studio but received the same error from the 2008 installer during my follow-up attempt.</p> <p><strong>Updates</strong></p> <p>1) Uninstalled the SQL 2005 Management Studio only. Received the same error from the 2008 install.</p> <p>2) Removed all SQL 2005 common components. Received the same error from the 2008 install.</p> <p>3) Installed the shared components from the SQL 2008 installation program. Received the same error from the 2008 install when trying to install the new SQL 2008 instance.</p> <p>4) Uninstalled SQL 2008 components, rebooted, re-installed SQL 2005 Management Studio from installation media, rebooted, un-installed SQL 2005 Workstation Components from Control Panel, re-booted.</p> <p>Installation of SQL 2008 is now proceeding as it should.</p> <p>Seems likely that if I'd re-booted after update 2 above things would have gone more smoothly. :-(</p> http://stackoverflow.com/questions/260432/500-error-running-visual-studio-asp-net-unit-test 1 500 Error Running Visual Studio ASP.NET Unit Test marc 2008-11-04T00:19:12Z 2009-04-17T17:30:45Z <p>I have the following method in my unit test project:</p> <pre><code> [TestMethod] [HostType("ASP.NET")] [UrlToTest("http://localhost:3418/Web/SysCoord/ChooseEPA.aspx")] [AspNetDevelopmentServerHost("%PathToWebRoot%")] public void TestMethod1() { Page page = TestContext.RequestedPage; Assert.IsTrue(false, "Test ran, at least."); } </code></pre> <p>I'm getting this exception:</p> <p>The test adapter 'WebHostAdapter' threw an exception while running test 'TestMethod1'. The web site could not be configured correctly; getting ASP.NET process information failed. Requesting '<a href="http://localhost:3418/SysCoord/VSEnterpriseHelper.axd" rel="nofollow">http://localhost:3418/SysCoord/VSEnterpriseHelper.axd</a>' returned an error: The remote server returned an error: (404) Not Found. The remote server returned an error: (404) Not Found.</p> <p>The page works as it should in a browser at the url: <a href="http://localhost:3418/Web/SysCoord/ChooseEPA.aspx" rel="nofollow">http://localhost:3418/Web/SysCoord/ChooseEPA.aspx</a>. </p> <p>This physical path is: C:\ESI\HR_Connect2\BenefitChangeSystem\Application_DEV\Web\SysCoord.</p> <p>Any ideas would be appreciated.</p> <p><strong>Update 1</strong></p> <p>Added the following to my web.config file per this article. Also made the web.config writable and killed/restarted the development web server. No change in behavior.</p> <pre><code>&lt;location path="VSEnterpriseHelper.axd"&gt; &lt;system.web&gt; &lt;authorization&gt; &lt;allow users="*"/&gt; &lt;/authorization&gt; &lt;/system.web&gt; &lt;/location&gt; </code></pre> <p><strong>Update 2</strong></p> <p>Changing the AspNetDevelopmentServerHost attribute to the equivalent of [AspNetDevelopmentServerHost("%PathToWebRoot%\solutionfolder\webfolder", "/webfolder")] resolved the 404 problem.</p> <p>Unfortunately the test began to return a 500 error instead. Progress, but not much. Trial and error with a clean project led to the conclusion that references to custom classes in the of the web.config were causing the problem.</p> <p>For example:</p> <pre><code> &lt;profile enabled="true" defaultProvider="MyProfileProvider"&gt; &lt;providers&gt; &lt;add name="MyProfileProvider" connectionStringName="ProfileConnectionString" applicationName="/MyApp" type="System.Web.Profile.SqlProfileProvider"/&gt; &lt;/providers&gt; &lt;properties&gt; &lt;add name="Theme" type="String" defaultValue="Default"/&gt; &lt;add name="LastLogon" type="DateTime"/&gt; &lt;add name="LastLogonIp" type="String"/&gt; &lt;!-- &lt;add name="EmployeeSearchCriteria" type="MyApplicationFramework.Profile.EmployeeSearchCriteria"/&gt; &lt;add name="DocumentSearchCriteria" type="MyApplicationFramework.Profile.DocumentSearchCriteria"/&gt; --&gt; &lt;/properties&gt; &lt;/profile&gt; </code></pre> <p>With the criteria types above commented out the test ran fine. With them uncommented, the 500 error was returned.</p> <p>Anyone had a similar problem in the past?</p> http://stackoverflow.com/questions/115873/sql-server-remote-stored-procedure-and-dtc-transactions 0 SQL Server, Remote Stored Procedure, and DTC Transactions marc 2008-09-22T16:22:45Z 2009-01-28T00:26:35Z <p>Our organization has a lot of its essential data in a mainframe Adabas database. We have ODBC access to this data and from C# have queried/updated it successfully using ODBC/Natural "stored procedures".</p> <p>What we'd like to be able to do now is to query a mainframe table from within SQL Server 2005 stored procs, dump the results into a table variable, massage it, and join the result with native SQL data as a result set.</p> <p>The execution of the Natural proc from SQL works fine when we're just selecting it; however, when we insert the result into a table variable SQL seems to be starting a distributed transaction that in turn seems to be wreaking havoc with our connections.</p> <p>Given that we're not performing updates, is it possible to turn off this DTC-escalation behavior? </p> <p>Any tips on getting DTC set up properly to talk to DataDirect's (formerly Neon Systems) Shadow ODBC driver?</p> http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing 6 Does This ASP.NET Consultant Know What He's Doing? marc 2008-10-02T20:37:56Z 2009-01-26T02:20:20Z <p>The IT department of a subsidiary of ours had a consulting company write them an ASP.NET application. Now it's having intermittent problems with mixing up who the current user is and has been known to show Joe some of Bob's data by mistake.</p> <p>The consultants were brought back to troubleshoot and we were invited to listen in on their explanation. Two things stuck out.</p> <p>First, the consultant lead provided this pseudo-code:</p> <pre><code>void MyFunction() { Session["UserID"] = SomeProprietarySessionManagementLookup(); Response.Redirect("SomeOtherPage.aspx"); } </code></pre> <p>He went on to say that the assignment of the session variable is asynchronous, which seemed untrue. Granted the call into the lookup function could do something asynchronously, but this seems unwise.</p> <p>Given that alleged asynchronousness, his theory was that the session variable was not being assigned before the redirect's inevitable ThreadAbort exception was raised. This faulure then prevented SomeOtherPage from displaying the correct user's data.</p> <p>Second, he gave an example of a coding best practice he recommends. Rather than writing:</p> <pre><code>int MyFunction(int x, int x) { try { return x / y; } catch(Exception ex) { // log it throw; } } </code></pre> <p>the technique he recommended was:</p> <pre><code> int MyFunction(int x, int y, out bool isSuccessful) { isSuccessful = false; if (y == 0) return 0; isSuccessful = true; return x / y; } </code></pre> <p>This will certainly work and could be better from a performance perspective in some situations.</p> <p>However, from these and other discussion points it just seemed to us that this team was not well-versed technically.</p> <p>Opinions?</p> http://stackoverflow.com/questions/308/is-there-a-version-control-system-for-database-structure-changes/141057#141057 1 Answer by marc for Is there a version control system for database structure changes? marc 2008-09-26T18:12:01Z 2009-01-21T16:08:21Z <p>We've used <a href="http://msdn.microsoft.com/en-us/vsts2008/products/bb933747.aspx" rel="nofollow">MS Team System Database Edition</a> with pretty good success. It integrates with TFS version control and Visual Studio more-or-less seamlessly and allows us to manages stored procs, views, etc., easily. Conflict resolution can be a pain, but version history is complete once it's done. Thereafter, migrations to QA and production are extremely simple.</p> <p>It's fair to say that it's a version 1.0 product, though, and is not without a few issues.</p> http://stackoverflow.com/questions/447122/can-i-have-a-foreign-key-referencing-a-column-in-a-view-in-sql-server 3 Can I have a foreign key referencing a column in a view in SQL Server? marc 2009-01-15T15:17:15Z 2009-01-16T08:46:39Z <p>In SQL Server 2008 and given TableA(A_ID, A_Data), TableB(B_ID, B_Data), and ViewC(A_or_B_ID, A_or_B_Data), is it possible to define TableZ(A_or_B_ID, Z_Data) such that Z's A_or_B_ID column is constrained to the values found in ViewC? Can this be done with a foreign key against the view?</p> http://stackoverflow.com/questions/446954/defining-business-rules/447159#447159 0 Answer by marc for Defining Business Rules marc 2009-01-15T15:26:27Z 2009-01-15T15:26:27Z <p>How about "An A code alone is not completely descriptive. Every A code must be further defined by a B code."</p> <p>If some A codes only allow a subset of B codes you'd have to define that as well.</p> http://stackoverflow.com/questions/429186/confused-how-to-write-this-simple-update-insert/429348#429348 -1 Answer by marc for Confused how to write this simple UPDATE/INSERT marc 2009-01-09T19:23:48Z 2009-01-09T19:23:48Z <p>I'd recommend adding a unique row identifier to the table (such as an identity column in SQL Server) and using that to decide which record(s) to update. Operations without a row identifier would necessarily be inserts.</p> http://stackoverflow.com/questions/141718/sql-server-temp-tables-and-connection-pooling 6 SQL Server Temp Tables and Connection Pooling marc 2008-09-26T20:20:58Z 2008-11-14T02:56:35Z <p>I have a multi-user ASP.NET app running against SQL Server and want to have StoredProcA create a #temptable temp table - not a table variable - to insert some data, then branch to StoredProcB, StoredProcC, and StoredProcD to manipulate the data in #temptable per business rules. </p> <p>The web app uses connection pooling when talking to SQL. Will I get a new #temptable scratch area for each call of StoredProcA? Or will the connection pooling share the #temptable between users?</p> http://stackoverflow.com/questions/251091/gridview-objectdatasource-inside-runatserver-container-does-not-bind 0 GridView/ObjectDataSource inside runat=server container does not bind marc 2008-10-30T17:44:32Z 2008-11-04T13:10:05Z <p>I've got a small web form with 2 radio buttons, call them PickFromList and EnterValue. When PickFromList is checked I want to show a GridView that I've configured to bind to an ObjectDataSource. When EnterValue is checked I want the GridView to disappear.</p> <p>This form is laid out using a table and want to hide/show the appropriate rows based on appropriate data and user input. </p> <p>Unfortunately the GridView doesn't bind when the trPickFromList2 row specifies the id and the runat="server" attributes. If I remove id and runat="server" from the trPickFromList2 row it binds successfully.</p> <p>Any ideas?</p> <pre><code>&lt;table id="tblOptions" runat="server"&gt; &lt;tr id="trPickFromList1" runat="server"&gt; &lt;td&gt; &lt;asp:RadioButton ID="rbFromList" runat="server" GroupName="Selection" Text="Get Data From Existing Item" AutoPostBack="True" oncheckedchanged="rbromList_CheckedChanged" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr id="trPickFromList2" runat="server"&gt; &lt;td style="padding-left:20px"&gt; &lt;asp:GridView ID="gvList" runat="server" AutoGenerateColumns="False" DataSourceID="odsList" Width="400px" onrowdatabound="gvList_RowDataBound"&gt; &lt;Columns&gt; ... &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr id="trEnterValue1" runat="server"&gt; &lt;td&gt; &lt;asp:RadioButton ID="rbEnterValue" runat="server" GroupName="Selection" Text="Create a New Item" AutoPostBack="True" oncheckedchanged="rbEntered_CheckedChanged" /&gt; ... </code></pre> http://stackoverflow.com/questions/251091/gridview-objectdatasource-inside-runatserver-container-does-not-bind/261835#261835 1 Answer by marc for GridView/ObjectDataSource inside runat=server container does not bind marc 2008-11-04T13:10:05Z 2008-11-04T13:10:05Z <p>I ended up implementing <a href="http://www.wilcob.com/Wilco/News/RowSelectorFieldForGridView.aspx" rel="nofollow">Wilco Bauwer's RowSelectorField control</a> to solve this problem. It's not a perfect solution in that the control surfaces the the selected row's index value rather than the selected data key value(s); however, it worked out well.</p> http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133761#133761 18 Answer by marc for Best programming novel to take on holiday marc 2008-09-25T14:38:54Z 2008-11-03T13:53:04Z <p><a href="http://rads.stackoverflow.com/amzn/click/0553380958" rel="nofollow">Snow Crash</a> is the best, IMO. Of those not recommended by others, <a href="http://rads.stackoverflow.com/amzn/click/0061015725" rel="nofollow">Michael Crichton's Prey</a> has some cool techy aspects.</p> http://stackoverflow.com/questions/231739/how-to-retrieve-data-from-dynamically-added-textboxes/231761#231761 3 Answer by marc for How to retrieve data from dynamically added textboxes? marc 2008-10-23T22:18:48Z 2008-10-23T22:18:48Z <p>Assuming you're wanting to access the controls on the postback you'd probably re-create the dynamic controls exactly as they were created on the initial load, then use the page's FindControls method to find the controls. It would probably help to create the textboxes with IDs like Textbox1, Textbox2, etc.</p> http://stackoverflow.com/questions/224867/what-programming-language-do-you-wish-would-quietly-retire/227607#227607 4 Answer by marc for What programming language do you wish would quietly retire? marc 2008-10-22T21:25:33Z 2008-10-22T21:25:33Z <p>Natural. </p> <p>While a significant improvement over COBOL, its parent language, Natural and its companion Adabas never made the jump into the relational database world. Its continuing use only perpetuates the mainframe green-screen/batch processing model of the 1970s. And it's still in active use at the major universities in Texas and other states. Higher Ed ought to lead the way, not trail behind with the dinosaurs.</p> <p>Fundamental problems are the mainframe's 8 character program name limit which discourages the use of sub-programs, use of sub-routines instead of true functions, vast amounts of global data, inability to dynamically query tables, COBOLesque verbosity, lack of direct ODBC connectivity, absence of SQL support, requirement of using pre-defined indexes to read data, etc.</p> http://stackoverflow.com/questions/226108/what-is-a-web-service-in-plain-english/226129#226129 1 Answer by marc for What is a "web service" in plain english? marc 2008-10-22T15:00:41Z 2008-10-22T15:00:41Z <p>A simple definition would be an HTTP request that acts like a normal method call; i.e., it accepts parameters and returns a structured result, usually XML, that can be deserialized into an object(s).</p> http://stackoverflow.com/questions/225398/is-it-better-to-write-a-more-targeted-stored-procedure-with-fewer-parameters/226044#226044 1 Answer by marc for Is it better to write a more targeted stored procedure with fewer parameters? marc 2008-10-22T14:42:05Z 2008-10-22T14:42:05Z <p>One advantage of the single stored proc if you're using a generated C# data access layer like LinqToSQL a single class is generated to represent your resultset.</p> http://stackoverflow.com/questions/73198/when-using-linq-to-sql-with-stored-procedures-must-char1-columns-be-returned-a 1 When using Linq to SQL with stored procedures, must char(1) columns be returned as c# chars? marc 2008-09-16T14:52:44Z 2008-10-06T05:58:07Z <p>When using Linq to SQL and stored procedures, the class generated to describe the proc's result set uses char properties to represent char(1) columns in the SQL proc. I'd rather these be strings - is there any easy way to make this happen?</p> http://stackoverflow.com/questions/168287/do-you-like-writing-your-own-data-access-layer-and-business-object-layer/168322#168322 3 Answer by marc for Do you like writing your own Data Access Layer and Business Object Layer? marc 2008-10-03T18:48:34Z 2008-10-03T18:48:34Z <p>When working projects that were primarily using stored procedures on the back end I've preferred to use a DAL generator designed in-house. That way we can control everything about the code while avoiding hand-coding the repetitive stuff.</p> http://stackoverflow.com/questions/168169/public-variables-vs-private-variables-with-accessors/168180#168180 0 Answer by marc for public variables vs private variables with accessors marc 2008-10-03T18:19:22Z 2008-10-03T18:19:22Z <p>Preparation. You never know when you'll want to removed the set accessor down the road, perform additional operations in the setter, or change the data source for the get.</p> http://stackoverflow.com/questions/164053/should-log-file-streams-be-opened-closed-on-each-write-or-kept-open-during-a-desk/164086#164086 0 Answer by marc for Should log file streams be opened/closed on each write or kept open during a desktop application's lifetime? marc 2008-10-02T19:21:58Z 2008-10-02T19:21:58Z <p>As a user of your application I'd prefer it to not hold files open unless it's a real requirement of the app. Just one more thing that can go wrong in the event of a system crash, etc.</p> http://stackoverflow.com/questions/160711/net-time-sinkholes/162324#162324 2 Answer by marc for .NET time sinkholes? marc 2008-10-02T13:41:11Z 2008-10-02T13:41:11Z <p>Configuration files, particularly with shared class library projects, seem more difficult to get implemented than they should be.</p> http://stackoverflow.com/questions/154089/mute-windows-volume-using-c/154111#154111 7 Answer by marc for Mute Windows Volume using C# marc 2008-09-30T17:31:32Z 2008-09-30T17:31:32Z <p><a href="http://www.geekpedia.com/tutorial176_Get-and-set-the-wave-sound-volume.html" rel="nofollow">http://www.geekpedia.com/tutorial176_Get-and-set-the-wave-sound-volume.html</a></p> http://stackoverflow.com/questions/140959/if-your-software-development-team-is-not-following-any-design-methodology-what-i/140998#140998 0 Answer by marc for If your software development team is not following any design methodology, what is that called? marc 2008-09-26T17:58:49Z 2008-09-26T17:58:49Z <p>SOTP - Seat of the Pants!</p> http://stackoverflow.com/questions/140627/session-variables-and-web-services/140659#140659 2 Answer by marc for Session Variables and Web Services marc 2008-09-26T16:52:32Z 2008-09-26T16:52:32Z <p>In general web services should not rely on session data. Think of them as ordinary methods: parameters go in and an answer comes out.</p> http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134798#134798 -1 Answer by marc for Good excuses NOT to use version control marc 2008-09-25T17:45:34Z 2008-09-25T17:45:34Z <p>Copying directories of code around is the same thing as version control and it's free!</p> http://stackoverflow.com/questions/133607/what-is-the-best-way-to-learn-c-what-next-after-kr/133722#133722 4 Answer by marc for What is the best way to learn C? What next after K&R? marc 2008-09-25T14:32:56Z 2008-09-25T14:32:56Z <p>Back in the day, the first edition of the <a href="http://rads.stackoverflow.com/amzn/click/0672326965" rel="nofollow">Waite Group's C</a> Primer helped me way more than K&amp;R. Sacrilege, I know, but true. Walk first, then run.</p> http://stackoverflow.com/questions/129417/passing-exceptions-to-an-error-screen-in-asp-net-c/129450#129450 2 Answer by marc for Passing Exceptions to an error screen in ASP.net/C# marc 2008-09-24T19:50:18Z 2008-09-24T19:50:18Z <p>We've had good luck capturing exceptions in the Global.asax Application_Error event, storing them in session, and redirecting to our error page. Alternately you could encode the error message and pass it to the error page in the querystring.</p> http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121506#121506 0 Answer by marc for SQL - fetch the row which has the Max value for a column marc 2008-09-23T14:49:33Z 2008-09-23T14:49:33Z <p>Assuming Date is unique for a given UserID, here's some TSQL:</p> <p>SELECT UserTest.UserID, UserTest.Value FROM UserTest INNER JOIN ( SELECT UserID, MAX(Date) MaxDate FROM UserTest GROUP BY UserID ) Dates ON UserTest.UserID = Dates.UserID AND UserTest.Date = Dates.MaxDate </p> http://stackoverflow.com/questions/115873/sql-server-remote-stored-procedure-and-dtc-transactions/117214#117214 0 Answer by marc for SQL Server, Remote Stored Procedure, and DTC Transactions marc 2008-09-22T20:02:44Z 2008-09-22T20:02:44Z <p>That's true. As you might guess, the Natural procedures we want to call do lookups and calculations that we'd like to keep at that level if possible.</p> http://stackoverflow.com/questions/296719/when-should-i-start-a-method-name-that-gets-a-property-with-the-get-prefix/296766#296766 Comment by marc on When should I start a method name that gets a property with the "get-" prefix? marc 2008-11-17T21:21:31Z 2008-11-17T21:21:31Z Ian, I have to agree with what your perspective on things. &quot;Is a&quot; doesn't like the getProperty convention. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/77966#77966 Comment by marc on What non-programming books should programmers read? marc 2008-11-10T19:39:37Z 2008-11-10T19:39:37Z I second pearcewg (and BoltBait) http://stackoverflow.com/questions/251091/gridview-objectdatasource-inside-runatserver-container-does-not-bind/251551#251551 Comment by marc on GridView/ObjectDataSource inside runat=server container does not bind marc 2008-10-30T20:10:27Z 2008-10-30T20:10:27Z Just for alignment purposes - 20px in to subordinate the grid to the radio button. http://stackoverflow.com/questions/251091/gridview-objectdatasource-inside-runatserver-container-does-not-bind/251281#251281 Comment by marc on GridView/ObjectDataSource inside runat=server container does not bind marc 2008-10-30T19:12:22Z 2008-10-30T19:12:22Z That's a good suggestion. There's no good reason, just that we're not a big JavaScript shop. There are some additional problems, such as validation errors on postback that would have to be handled too. http://stackoverflow.com/questions/224867/what-programming-language-do-you-wish-would-quietly-retire/224879#224879 Comment by marc on What programming language do you wish would quietly retire? marc 2008-10-22T21:19:50Z 2008-10-22T21:19:50Z Too much new COBOL code being generated at Texas A&amp;M...Retiring the language would be a good idea. http://stackoverflow.com/questions/224818/what-single-piece-of-software-do-you-most-admire-and-why/225017#225017 Comment by marc on What single piece of software do you most admire, and why? marc 2008-10-22T18:36:35Z 2008-10-22T18:36:35Z Admittedly the UI is more accessible for the new user; however, the lack of a built-in &quot;revert to previous UI&quot; feature is incredibly annoying. http://stackoverflow.com/questions/175881/sql-server-express-2008-install-side-by-side-w-sql-2005-express-fails/175894#175894 Comment by marc on SQL Server Express 2008 Install Side-by-side w/ SQL 2005 Express Fails marc 2008-10-06T19:51:51Z 2008-10-06T19:51:51Z That's good news! But do you know what pieces of 2005 Express I need to remove to convince the installer to proceed? http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing/164497#164497 Comment by marc on Does This ASP.NET Consultant Know What He's Doing? marc 2008-10-02T21:14:29Z 2008-10-02T21:14:29Z I think it's mostly our &quot;child&quot; organization that doesn't want to share the code - a turf thing... http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing Comment by marc on Does This ASP.NET Consultant Know What He's Doing? marc 2008-10-02T20:52:22Z 2008-10-02T20:52:22Z Thanks, I've fixed that. http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing/164497#164497 Comment by marc on Does This ASP.NET Consultant Know What He's Doing? marc 2008-10-02T20:49:00Z 2008-10-02T20:49:00Z Thanks for the input. They don't seem overly interested in what we think but I'll put it on the table. Thus far we've not been invited to look at any source code. http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing/164478#164478 Comment by marc on Does This ASP.NET Consultant Know What He's Doing? marc 2008-10-02T20:44:05Z 2008-10-02T20:44:05Z Re &quot;If you need to ask...&quot;, yeah, that's a good point! http://stackoverflow.com/questions/141718/sql-server-temp-tables-and-connection-pooling/141821#141821 Comment by marc on SQL Server Temp Tables and Connection Pooling marc 2008-09-26T20:45:29Z 2008-09-26T20:45:29Z OK, now this statement makes sense to me: &quot;When table is preceded by single ‘#’ sign, it is defined as local temporary table and its scope is limited to session in which it is created.&quot; The word &quot;session&quot; had me puzzled! http://stackoverflow.com/questions/141718/sql-server-temp-tables-and-connection-pooling/141751#141751 Comment by marc on SQL Server Temp Tables and Connection Pooling marc 2008-09-26T20:42:51Z 2008-09-26T20:42:51Z Yes, that's it exactly. Thanks! http://stackoverflow.com/questions/141718/sql-server-temp-tables-and-connection-pooling/141754#141754 Comment by marc on SQL Server Temp Tables and Connection Pooling marc 2008-09-26T20:37:15Z 2008-09-26T20:37:15Z I think David B is correct. See my example. <a href="http://www.mooredynasty.com/Blog/BlogComments.aspx?BlogID=BLOG0001&amp;Period=2008_09&amp;EntryID=ENTRY0885" rel="nofollow">mooredynasty.com/Blog/&hellip;</a> http://stackoverflow.com/questions/140815/are-you-a-code-neat-freak/140839#140839 Comment by marc on Are you a code neat freak? marc 2008-09-26T18:03:54Z 2008-09-26T18:03:54Z &quot;Programs must be written for people to read, and only incidentally for machines to execute.&quot; - Abelson &amp; Sussman, Structure and Interpretation of Computer Programs