User Dining Philanderer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:08:54Z http://stackoverflow.com/feeds/user/30934 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114521/hide-asp-net-gridview-row/1492628#1492628 0 Answer by Dining Philanderer for Hide asp.net Gridview row Dining Philanderer 2009-09-29T13:39:30Z 2009-09-29T13:39:30Z <p>Why are you not using the EmptyDataTemplate? It seems to work great even though I have only been using it for a couple days...</p> http://stackoverflow.com/questions/893518/fastest-way-to-check-date-range 0 Fastest way to check date range... Dining Philanderer 2009-05-21T15:20:53Z 2009-09-08T07:27:10Z <p>I store events in SQLServer 2005 where the time the event occured is important and must be stored in the datebase. What is the fastest way to write the date range check in the where clause to ensure everything on that day is selected?<br><br> Currently when @DateStart and @DateEnd are passed in I set @DateStart to midnight and set @DateEnd to the last instant before midnight as the very first thing to catch every possible event on the day.<br></p> <pre><code>IF (@DateStart IS NOT NULL) BEGIN SET @DateStart = CAST ( ( CAST (DATEPART (yyyy,@DateStart) AS NVARCHAR(4)) +'/'+ CAST (DATEPART (mm,@DateStart) AS NVARCHAR(2)) +'/'+ CAST (DATEPART (dd,@DateStart) AS NVARCHAR(2)) +' '+ '00:00:00.000' ) AS DATETIME) END IF (@DateEnd IS NOT NULL) BEGIN SET @DateEnd = CAST ( ( CAST (DATEPART (yyyy,@DateEnd) AS NVARCHAR(4)) +'/'+ CAST (DATEPART (mm,@DateEnd) AS NVARCHAR(2)) +'/'+ CAST (DATEPART (dd,@DateEnd) AS NVARCHAR(2)) +' '+ '23:59:59.997' ) AS DATETIME ) END </code></pre> <p>So the where clause is very easy to read:</p> <p>WHERE ( EventDate >= @DateStart AND EventDate &lt;= @DateEnd )</p> <p>Thanks,</p> http://stackoverflow.com/questions/1158749/manipulate-data/1158796#1158796 0 Answer by Dining Philanderer for manipulate data Dining Philanderer 2009-07-21T12:10:39Z 2009-07-21T12:17:44Z <p>If you are coming from SQL why not put the actual calculation inside the SQL?</p> <p>If your business rules require you to keep logic out of the SQL then put it in the ItemDataBound event of a DataGrid (RowDataBound for GridView)...</p> http://stackoverflow.com/questions/1144043/benefit-of-using-window-prefix-in-javascript/1144158#1144158 3 Answer by Dining Philanderer for Benefit of using 'window' prefix in javascript Dining Philanderer 2009-07-17T15:52:20Z 2009-07-17T15:52:20Z <p>Retrieved from Google (<a href="http://www.techotopia.com/index.php/JavaScript_Window_Object" rel="nofollow">http://www.techotopia.com/index.php/JavaScript_Window_Object</a>):</p> <p>The window object is the top-level object of the object hierarchy. As such, whenever an object method or property is referenced in a script without the object name and dot prefix it is assumed by JavaScript to be a member of the window object. This means, for example, that when calling the window alert() method to display an alert dialog the window. prefix is not mandatory. Therefore the following method calls achieve the same thing:</p> <p>window.alert() <br> alert()</p> <p>However, I read but have not had time to test the following from: (<a href="http://www.javascriptref.com/reference/object.cfm?key=20" rel="nofollow">http://www.javascriptref.com/reference/object.cfm?key=20</a>)<Br><br> One place you'll need to be careful, though, is in event handlers. Because event handlers are bound to the Document, a Document property with the same name as a Window property (for example, open) will mask out the Window property. For this reason, you should always use the full "window." syntax when addressing Window properties in event handlers.</p> http://stackoverflow.com/questions/1126725/t-sql-equivalent-of-rand/1126807#1126807 0 Answer by Dining Philanderer for T-SQL equivalent of =rand() Dining Philanderer 2009-07-14T17:23:08Z 2009-07-14T18:31:50Z <p>Word pulls from an existing built in dictionary does it not? What set of words are you going to pull from to populate your table?</p> <p>Off the cuff I would say to import (using xml/Excel file?) data consisting of the words you wish to choose from into a new table then randomly pull off that new table. There has to be an existing XML file out in 'the wild' you can download...</p> <p>You could make the column an XML data type and retrieve from that file or make it strictly one word per row...</p> <p>Have fun...</p> http://stackoverflow.com/questions/1045047/asp-net-textbox-scrolling-when-disabled 0 ASP.net textbox scrolling when disabled Dining Philanderer 2009-06-25T17:00:47Z 2009-06-25T18:05:59Z <p>Greetings, I have a form where employees enter comments in a multiline textbox with a limit of 4000 characters. I have the rows set to 8 (obviously an arbitrary number).<br><br> When a supervisor looks at the comments the textbox is disabled so the employee comments cannot be modified.<br><br> The problem is when the data extends below row 8. Since the textbox is disabled the scrollbar cannot be moved and the supervisor cannot see all the comments. If I hide the textbox and databind to a label for the supervisor none of the line breaks are maintained and a well written paragraph turns into the biggest run on sentence ever…<br><br> Is there a way to enable the scroll bar leaving the text disabled?<br> Is there a way to preserve the structure of the entry in the label?</p> http://stackoverflow.com/questions/747800/mssql-presenting-data-when-column-names-dynamic 0 MSSQL - Presenting data when column names dynamic... Dining Philanderer 2009-04-14T14:19:07Z 2009-05-12T07:06:54Z <p>I am presenting to a final authority evaluation scores for employees. Each row is an employee’s data and since the categories to be evaluated can change from period to period the column names cannot be hardcoded in the Stored Procedures. I have already devised the following solution. <br/> <br/> 1 Create a temp table<br/> 2 Dynamically use the Alter Table command to add all applicable columns (Stored in @ColumnNames)<br/> 3 Use Dynamic SQL inside a cursor to write an insert for each employee that gets the correct scores (IE N employees means N inserts) <br/> </p> <pre><code>(SELECT @ECMScores = COALESCE(@ECMScores + ',', '') + CAST(EIS.ECMScore AS NVARCHAR(1000)) (FROM...)) SET @SQLString = '' SET @SQLString = @SQLString + 'INSERT INTO #ResultSet (' SET @SQLString = @SQLString + 'EvaluationScoreID,' SET @SQLString = @SQLString + 'EmployeeID,' SET @SQLString = @SQLString + 'EmployeeName,' SET @SQLString = @SQLString + @ColumnNames SET @SQLString = @SQLString + ') ' SET @SQLString = @SQLString + 'VALUES (' SET @SQLString = @SQLString + ''+CAST(@EvaluationScoreID AS NVARCHAR(MAX))+',' SET @SQLString = @SQLString + ''+CAST(@EmployeeID AS NVARCHAR(MAX))+',' SET @SQLString = @SQLString + '"'+@EmployeeName+'",' SET @SQLString = @SQLString + @ECMScores SET @SQLString = @SQLString + ')' EXECUTE sp_executesql @SQLString </code></pre> <p>The problem is it takes approx 1 second for every 100 employees. This quickly becomes unacceptable…</p> <p>Does anyone have any better ideas on how to proceed? Removing the cursor (obviously), and using one insert (Perhaps Select into) is my first idea perhaps reading from a dynamically created XML variable…</p> <p>Thanks,</p> http://stackoverflow.com/questions/827547/determine-ddl-value-for-dynamic-column-creation-in-oninit-event 1 Determine DDL value for dynamic column creation in oninit event Dining Philanderer 2009-05-06T00:34:11Z 2009-05-06T14:14:26Z <p>Greetings, hopefully there is a simple solution for this complex problem. Please correct any misconceptions I have along the way. A while ago I wrote a GrivView with dynamic column capability. The columns are added in the OnInit page event so that they are added BEFORE the viewstate is applied. They are reapplied on every posting in this section of the page so that when the viewstate is applied changes that the user has made and not committed to the database are maintained. It also is required if you don’t want your viewstate control tree to get out of synch and blow everything up.</p> <p>My current problem is that I am now tasked with doing essentially the same thing where the columns will be different based on a Drop Down List (I will recreate the GridView if the ddl changes, and the users will lose all work with a warning). How can I get the ID that is selected in the Drop Down List in the OnInit Event? My understanding is that when the user changes the value of the ddl on the client side a JavaScript “__doPostBack” call is fired. The page request is then sent to the server but by the time the new value is present in the event handler I am past the point where I need to add the columns. </p> <p>I saw something I thought was promising when people were trying to determine what control caused a post back but that code relies on page.Request.Params.Get("__EVENTTARGET"); and page.Request.Form which are empty.</p> <p>Should I look at the session state, try to ‘send’ the ID using client side manipulation, or some other method (Perhaps a sneaky way to look in the viewstate I am missing)?</p> <p>Thanks for any ideas!!!</p> http://stackoverflow.com/questions/774072/how-can-i-pass-a-char-null-in-a-stored-procedure-method-in-c-3-0/774106#774106 0 Answer by Dining Philanderer for How can I pass a char null in a Stored Procedure method in C# 3.0? Dining Philanderer 2009-04-21T19:03:58Z 2009-04-21T19:03:58Z <p>DBNull.Value is what that database expects...</p> <p>Here is how I am passing IsActive (which is a nullable boolean) as a parameter...</p> <pre><code>_ExecutedSP = new StoredProcedure("EvaluationType_GetList", base._SPInputOutput); if (this.IsActive == null) { _ExecutedSP.AddParameter("@IsActive", SqlDbType.Bit, DBNull.Value); } else { _ExecutedSP.AddParameter("@IsActive", SqlDbType.Bit, this.IsActive); } </code></pre> http://stackoverflow.com/questions/756127/building-pdf-files-with-c/756250#756250 1 Answer by Dining Philanderer for Building PDF Files with C# Dining Philanderer 2009-04-16T14:02:03Z 2009-04-16T14:20:21Z <p>I have used DynamicPDF and even when I was a newbie I found it easy to use. Here is one case where I generate a 1000 page report sent to a sponsor combining multiple PDF files into one large one (That's how they want it, that's how they get it)...<br> (Superfluous items deleted...)</p> <pre><code>// Create output file ceTe.DynamicPDF.Merger.MergeDocument docCombinedPDF = new ceTe.DynamicPDF.Merger.MergeDocument(); docCombinedPDF.Append(strFilePath); //Read all data from the content table and put in a dataset int iDocumentCount = dsPDFInfo.Tables[0].Rows.Count; if (iDocumentCount &gt; 0) { for (int docs = 0; docs &lt; dsPDFInfo.Tables[0].Rows.Count; docs++) { byte[] bytePDFArray = (byte[])dsPDFInfo.Tables[0].Rows[docs]["Content"]; int iContentSize = Convert.ToInt32(dsPDFInfo.Tables[0].Rows[docs]["ContentSize"]); MemoryStream ms = new MemoryStream(bytePDFArray, 0, iContentSize); ceTe.DynamicPDF.Merger.PdfDocument pdfdoc = new ceTe.DynamicPDF.Merger.PdfDocument(ms); ceTe.DynamicPDF.Merger.MergeDocument mergedoc = new ceTe.DynamicPDF.Merger.MergeDocument(pdfdoc); docCombinedPDF.Append(mergedoc); } // Insert Page Number int iPageNumber = 1; int iPageCount = docCombinedPDF.Pages.Count; float fPageNumberWidth = 150; float fPageNumberHeight = 15; float fPageNumberFontSize = 12; while (iPageNumber &lt;= iPageCount) { ceTe.DynamicPDF.Page page = docCombinedPDF.Pages[(iPageNumber-1)]; // All Page dimensions can be accessed therefore determine location dynamically float fPageNumberX = page.Dimensions.Width - (fPageNumberWidth + 20); float fPageNumberY = page.Dimensions.Height - (fPageNumberHeight + 20); page.Elements.Add(new PageNumberingLabel("Page %%CP%% of %%TP%%", fPageNumberX, fPageNumberY, fPageNumberWidth, fPageNumberHeight, ceTe.DynamicPDF.Font.TimesRoman, fPageNumberFontSize, ceTe.DynamicPDF.TextAlign.Right ) ); iPageNumber++; } // Write combined doc to web docCombinedPDF.InitialPageZoom = PageZoom.FitWidth; docCombinedPDF.DrawToWeb(this.Page, false, "InvoiceProjectReport", false); Response.End(); } else { labelMessage.Text = "There are no entries for the Project/Date Selection"; } </code></pre> http://stackoverflow.com/questions/659669/alter-table-with-programmatically-determined-constant-default-value 1 ALTER TABLE with programmatically determined constant DEFAULT value Dining Philanderer 2009-03-18T19:05:20Z 2009-03-24T13:15:48Z <p>I am trying to add a column (MSSQL 2005) to a table (Employee) with a default constraint of a primary key of another table (Department). Then I am going to make this column a FK to that table. Essentially this will assign new employees to a base department based off the department name if no DepartmentID is provided.<br /> This does not work:</p> <pre><code>DECLARE @ErrorVar INT DECLARE @DepartmentID INT SELECT @DepartmentID = DepartmentID FROM Department WHERE RealName = 'RocketScience' ALTER TABLE [Employee] ADD [DepartmentID] INT NULL CONSTRAINT [DepartmentIDOfAssociate] DEFAULT (@DepartmentIDAssociate) SELECT @ErrorVar = @@Error IF (@ErrorVar &lt;&gt; 0) BEGIN GOTO FATAL_EXIT END </code></pre> <p>The Production, Test, and Development databases have grown out of synch and the DepartmentID for the DepartmentName = ‘RocketScience’ may or may not be the same so I don’t want to just say DEFAULT (somenumber). I keep getting “Variables are not allowed in the ALTER TABLE statement” no matter which way I attack the problem.<br>What is the correct way to do this? I have tried nesting the select statement as well which gets “Subqueries are not allowed in this context. Only scalar expressions are allowed.” <br><br>In Addition, what would be really great I could populate the column values in one statement instead of doing the <br><br>{ALTER null}<br> {Update values}<br> {ALTER not null} <br><br>steps. I read something about the WITH VALUES command but could not get it to work. Thanks!!!</p> http://stackoverflow.com/questions/663468/whats-a-real-world-example-of-something-you-would-represent-with-a-hash/663703#663703 0 Answer by Dining Philanderer for What's a real world example of something you would represent with a hash? Dining Philanderer 2009-03-19T19:36:13Z 2009-03-19T19:36:13Z <p>One real world example I just wrote is when I was adding up the amount people spent on meals when filing expense reports.<br><br>I needed to get a daily total with no idea how many items would exist on a particular day and no idea what the date range for the expense report would be. There are restrictions on how much a person can expense with many variables (What city, weekend, etc...) <br><br> The hash table was the perfect tool to handle this. The key was the date the value was the receipt amount (converted to USD). The receipts could come in in any order, i just keep getting the value for that date and adding to it until the job was done. Displaying was easy as well.</p> http://stackoverflow.com/questions/659669/alter-table-with-programmatically-determined-constant-default-value/660226#660226 1 Answer by Dining Philanderer for ALTER TABLE with programmatically determined constant DEFAULT value Dining Philanderer 2009-03-18T21:39:30Z 2009-03-18T21:39:30Z <p>The accepted answer worked great (Thanks marc_s) but after I thought about it for a while I decided to go another route.<br>Mainly because there has to be a function left on the server which I think ends up being called every time an employee is added.<br>If someone messed with the function later then no one could enter an employee and the reason would not be obvious. (Even if that is not true then there are still extra functions on the server that do not need to be there)</p> <p>What I did was assemble the command dynamically in a variable and then call that using the EXECUTE command.</p> <p>Not only that but since I used the DEFAULT keyword with NOT NULL the table was back populated and I didn't have to run multiple commands to get it done. I found that one out by luck...</p> <pre><code>DECLARE @ErrorVar INT DECLARE @DepartmentIDRocketScience INT DECLARE @ExecuteString NVARCHAR(MAX) SELECT @DepartmentIDRocketScience = DepartmentID FROM Department WHERE RealName = 'RocketScience' SET @ExecuteString = '' SET @ExecuteString = @ExecuteString + 'ALTER TABLE [Employee] ' SET @ExecuteString = @ExecuteString + 'ADD [DepartmentID] INT NOT NULL ' SET @ExecuteString = @ExecuteString + 'CONSTRAINT [DF_DepartmentID_RocketScienceDepartmentID] DEFAULT ' +CAST(@DepartmentIDAssociate AS NVARCHAR(MAX)) EXECUTE (@ExecuteString) SELECT @ErrorVar = @@Error IF (@ErrorVar &lt;&gt; 0) BEGIN GOTO FATAL_EXIT END </code></pre> http://stackoverflow.com/questions/349878/unable-to-modifiy-active-directory-from-test-production-servers/659707#659707 0 Answer by Dining Philanderer for Unable to modifiy Active Directory from Test/Production servers Dining Philanderer 2009-03-18T19:17:50Z 2009-03-18T19:17:50Z <p>This was not caused by any code changes. The Production and Test servers were upgraded and run a newer version of IIS (6.0). The newer version of IIS will not work accross Active Directory domains.</p> <p>My development machine is running the older version of IIS (5.1)</p> <p>This explains why everthing was working last year and then suddenly stopped working. There are so few employees in the other domain that it was not immediatly noticed.</p> http://stackoverflow.com/questions/349878/unable-to-modifiy-active-directory-from-test-production-servers 1 Unable to modifiy Active Directory from Test/Production servers Dining Philanderer 2008-12-08T15:35:16Z 2009-03-18T19:17:50Z <p>OK since I am in a holding pattern on this issue perhaps someone has seen these symptoms and can provide some sage advice. (Note: I have learned only enough Active Directory information to build this feature and I only have read access to the Active Directory.)</p> <p>I updated the company intranet to allow the automatic entry/modification of employee phone/address information; it uses a web service to connect to the company Active Directory so I can call it from multiple locations in the main application. </p> <p>The AD has two domains (A and B) in the same forest. Each domain has an ‘ADS update user’ group and an ‘ADSupdate’ account (which belongs to ‘ADS update user’).</p> <p>Problem: Entries in Domain A update fine for Local Development Servers, Test Servers, and Production Servers. Entries in Domain B update only when run from Local Development Servers. When you run the same code (verified multiple times) on either Test or Production you get a (General access denied error).</p> <p>The domain name is stored in the employee record so the exact same code is called for all employees.</p> <p>All Local Development Servers, Test, and Production servers reside in Domain A.</p> <p>This has the Active Directory Admin for Domain B stumped and to be honest I am thankful that the Local Development Servers are able to update the Active Directory entries in domain B. It proves that the code works at least in one location</p> <p>I have looked at machine permissions, permissions on the group and user, and IIS and I can spot no significant differences. Any help would be appreciated…</p> http://stackoverflow.com/questions/642932/prevent-visitors-from-opening-certain-pages/650297#650297 0 Answer by Dining Philanderer for Prevent visitors from opening certain pages Dining Philanderer 2009-03-16T12:49:06Z 2009-03-16T12:49:06Z <p>I would make a role table for users. Everyone who logs in gets the 'normal' role. Special uses whom you designate by their credentials get assigned roles to access a page or section of your website. Certain users (like yourself) would get an administrator role that automatically allows them access to everything.</p> <p>Fire off a function called CheckIsInRoles('Admin', 'Normal', 'WhateverRoleYouChoose') which returns a boolean. If true, load the page; if not, don't.</p> <p>Even better don't display a link if not in the correct role.</p> <p>This has the added benefit of everyone logging on once and then accessing all the pages they need to without having to log on each time.</p> http://stackoverflow.com/questions/606943/accessing-styles-programmatically-to-get-values 1 Accessing styles programmatically to get values Dining Philanderer 2009-03-03T15:54:42Z 2009-03-04T23:41:14Z <p>In our application we have style sheets to define common colors etc… I wrote a quick and dirty function where I get a dataset from a stored procedure, lop off the columns that I don’t want to show, cram it into a programmatically generated DataGrid, set that DataGrid’s styles, then export it to Excel. Everyone loves the colors in the Excel output (Gasp! They match the DataGrid colors, blah blah blah…).<br><br> My final piece I would like to add to it is that I would like to programmatically access a style and grab color codes and other items from it (.IntranetGridHead) instead of hard coding them, which is what I am doing now.<br><br></p> <pre><code>int iHeaderColor = Convert.ToInt32 ("D0D7E8", 16); DataGrid dg = new DataGrid(); dg.DataSource = dsReturnDataSet.Tables[0].DefaultView; dg.DataBind(); dg.HeaderStyle.BackColor = System.Drawing.Color.FromArgb(iHeaderColor); dg.HeaderStyle.Font.Bold = true; dg.HeaderStyle.Font.Size = 10; </code></pre> <p>Obviously then whenever the company goes through another “rebranding” and the style sheet values change, the excel colors will automatically match and I will get a big (pat on the back||cookie).<br><br> Any thoughts from the C# people who know more than I (which would be most of you…)?<br> Thanks,<br> Michael</p> http://stackoverflow.com/questions/566610/as-a-recent-graduate-what-language-should-i-concentrate-on/566660#566660 0 Answer by Dining Philanderer for As a recent graduate, what language should I concentrate on? Dining Philanderer 2009-02-19T18:55:27Z 2009-02-19T18:55:27Z <p>You should learn two languages simultaneously, while exploring concepts like disc IO, creating xml files, reading from databases, etc. Implement the concepts in both languages. Just by doing this you will demonstrate you are flexible in any interviews (make sure you bring this method up) and you will prove to yourself that the concept is more important that the implementation.<br> One important note, make sure to keep good notes, you will be the one wanting to remember how you did something 2 years from now, the better notes you keep the less reinventing you have to do.</p> http://stackoverflow.com/questions/363871/how-do-you-handle-off-site-backups-of-terabytes-of-data/363988#363988 0 Answer by Dining Philanderer for How do you handle off-site backups of terabytes of data? Dining Philanderer 2008-12-12T20:10:17Z 2008-12-12T20:10:17Z <p>Why not encrpyt it and actually upload to a third party vendor?</p> <p>I am thinking of doing this with my data at home but have not found a vendor that will just let me do a dump...They all want to install client side apps...</p> <p>Admittedly, I have not looked that hard...</p> http://stackoverflow.com/questions/68150/how-long-do-you-keep-your-code/362785#362785 0 Answer by Dining Philanderer for How Long Do You Keep Your Code? Dining Philanderer 2008-12-12T13:48:29Z 2008-12-12T13:48:29Z <p>I implemented a red black tree in Java while in in college. I have always wanted to find that code again and cannot.</p> <p>Now I do not have the time to recreate it from scratch since I have three kids and do not develop in Java.</p> <p>I now keep everything so that I can relearn much faster. I also find it fascinating to see how I did something 1, 5, 10 years ago. It makes me feel good because I either did it right or I am better now and would do it differently</p> <p>If I ever go back to college to give a lecture to future students it in on the list of things to do:</p> <p>Save everything...</p> http://stackoverflow.com/questions/333965/sql-search-query-for-multiple-optional-parameters/333985#333985 0 Answer by Dining Philanderer for sql search query for multiple optional parameters Dining Philanderer 2008-12-02T13:53:42Z 2008-12-02T13:53:42Z <p>Even better is to make the parameter optional NULL and then test in the WHERE clause just like the empty string case...</p> http://stackoverflow.com/questions/305175/what-can-we-do-to-encourage-more-women-to-join-the-programming-field/305385#305385 10 Answer by Dining Philanderer for What can we do to encourage more women to join the programming field? Dining Philanderer 2008-11-20T14:03:52Z 2008-11-20T14:03:52Z <p>Respectfully (yes respectfully), I am so tired of this question. The programming field is the way it is and if women are attracted to it then so be it.</p> <p>I am the father of THREE daughters and if any one of them shows some aptitude then I will encourage them to be programmers (probably by first having them maintain their own web pages when they are old enough), but no more than if they showed some aptitude towards the medical field.</p> <p>When I hear this question it gets me upset about the other questions that never get asked or studied by industry executives and other higher ups.</p> <p>How can we encourage more women to become garbage collectors? The pay is actually very good and I have NEVER seen a woman loading the garbage at the end of my driveway on Monday.</p> <p>How can we encourage more men to become preschool teachers? EVERY SINGLE ONE I have ever seen is a woman.</p> <p>How come when I waited tables and men made up only 25% of the wait staff the men ended up taking the garbage out EVERY SINGLE NIGHT. I am not exaggerating, all the guys would keep track.</p> <p>I leave it as an exercise to the reader why you don’t see THESE questions and others like them asked on the evening news.</p> <p>It would be interesting to see an honest study about the original question IFF my questions would be included...</p> http://stackoverflow.com/questions/300427/using-an-arbitrary-number-of-parameters-in-t-sql/303083#303083 0 Answer by Dining Philanderer for Using an arbitrary number of parameters in T-SQL Dining Philanderer 2008-11-19T19:39:57Z 2008-11-19T19:39:57Z <p>What about using an XML data type to contain the parameters? It can be unbounded and assembled at run time...</p> <p>I pass in an unknown number of PKs for a table update then pump them into a temp table. It is easy to then update where PK in PKTempTable.</p> <p>Here is the code to parse the XML data type...</p> <pre><code> INSERT INTO #ERXMLRead (ExpenseReportID) SELECT ParamValues.ID.value('.','VARCHAR(20)') FROM @ExpenseReportIDs.nodes('/Root/ExpenseReportID') as ParamValues(ID) </code></pre> http://stackoverflow.com/questions/290548/c-validate-a-username-and-password-against-active-directory/290580#290580 15 Answer by Dining Philanderer for C# Validate a username and password against Active Directory? Dining Philanderer 2008-11-14T16:10:19Z 2008-11-15T00:35:46Z <p>We do this on our Intranet</p> <p>You have to use System.DirectoryServices;</p> <p>Here are the guts of the code</p> <pre><code>DirectoryEntry adsEntry = new DirectoryEntry(path, strAccountId, strPassword); DirectorySearcher adsSearcher = new DirectorySearcher( adsEntry ); //adsSearcher.Filter = "(&amp;(objectClass=user)(objectCategory=person))"; adsSearcher.Filter = "(sAMAccountName=" + strAccountId + ")"; try { SearchResult adsSearchResult = adsSearcher.FindOne(); bSucceeded = true; strAuthenticatedBy = "Active Directory"; strError = "User has been authenticated by Active Directory."; adsEntry.Close(); } catch ( Exception ex ) { // Failed to authenticate. Most likely it is caused by unknown user // id or bad strPassword. strError = ex.Message; adsEntry.Close(); } </code></pre> http://stackoverflow.com/questions/166468/is-it-worthwhile-to-write-a-programming-tutorial-book/290345#290345 0 Answer by Dining Philanderer for Is it worthwhile to write a programming tutorial book? Dining Philanderer 2008-11-14T15:06:29Z 2008-11-14T15:06:29Z <p>I say emphatically yes for the following:</p> <p>I have not gotten a concept when presented one way, yet it clicked when presented another, you may offer a different perspective that clicks with others. IE you will be helping others.</p> <p>I find that when researching to post items that I learn a tremendous amount. From a selfish standpoint YOU will be a better programmer for going through the process. IE you will be helping yourself.</p> <p>WIN, WIN</p> <p>As others have pointed out there are other benefits like peer recognition and wealth, just don’t count on them as much as the first two items above…</p> http://stackoverflow.com/questions/281339/confirm-before-delete-update-in-sql-management-studio/281378#281378 0 Answer by Dining Philanderer for Confirm before delete/update in SQL Management Studio? Dining Philanderer 2008-11-11T16:25:52Z 2008-11-11T16:25:52Z <p>That is why I believe you should always:</p> <p>1 Use stored procedures that are tested on a dev database before deploying to production</p> <p>2 Select the data before deletion</p> <p>3 Screen developers using an interview and performance evaluation process :)</p> <p>4 Base performance evaluation on how many database tables they do/do not delete</p> <p>5 Treat production data as if it were poisonous and be very afraid</p> http://stackoverflow.com/questions/269404/mssql-2005-table-variable-update-problem 2 MSSQL 2005 Table Variable Update Problem Dining Philanderer 2008-11-06T16:49:53Z 2008-11-06T19:42:23Z <p>I have been reading about the differences between Table Variables and Temp Tables and stumbled upon the following issue with the Table Variable. I did not see this issue mentioned in the articles I pursued. </p> <p>I pass in a series of PKs via a XML data type and successfully create the records in both temp table structures. When I attempt to update further fields in the temp tables the Table Variable fails but the Temp Table has no problem with the Update Statement. What do need to do different? I would like to take advantage of the speed boost that Table Variables promise…</p> <p>Here are the SP snippets and Results:</p> <pre><code>CREATE PROCEDURE ExpenseReport_AssignApprover ( @ExpenseReportIDs XML ) AS DECLARE @ERTableVariable TABLE ( ExpenseReportID INT, ExpenseReportProjectID INT, ApproverID INT) CREATE TABLE #ERTempTable ( ExpenseReportID INT, ExpenseReportProjectID INT, ApproverID INT ) INSERT INTO @ERTableVariable (ExpenseReportID) SELECT ParamValues.ID.value('.','VARCHAR(20)') FROM @ExpenseReportIDs.nodes('/Root/ExpenseReportID') as ParamValues(ID) INSERT INTO #ERTempTable (ExpenseReportID) SELECT ParamValues.ID.value('.','VARCHAR(20)') FROM @ExpenseReportIDs.nodes('/Root/ExpenseReportID') as ParamValues(ID) UPDATE #ERTempTable SET ExpenseReportProjectID = ( SELECT TOP 1 ExpenseReportProjectID FROM ExpenseReportItem WHERE(ExpenseReportID = #ERTempTable.ExpenseReportID)) UPDATE @ERTableVariable SET ExpenseReportProjectID = ( SELECT TOP 1 ExpenseReportProjectID FROM ExpenseReportItem WHERE(ExpenseReportID = @ERTableVariable.ExpenseReportID)) </code></pre> <p>Error when last update statement in there : Must declare the scalar variable "@ERTableVariable".</p> <p>ExpenseReportProjectID is updated in #ERTempTable when the last update is commented out:</p> <p>Thanks for you input:</p> http://stackoverflow.com/questions/269404/mssql-2005-table-variable-update-problem/269437#269437 0 Answer by Dining Philanderer for MSSQL 2005 Table Variable Update Problem Dining Philanderer 2008-11-06T16:58:21Z 2008-11-06T16:58:21Z <p>Sorry I thought I was clear, I only included snippets from the SP. I left out all the comments and misc code so it wouldn't clutter the screen. My SP has the BEGIN and END keywords.</p> <p>IE it works perfectly when I comment out the second update using the TempVariable...</p> http://stackoverflow.com/questions/268865/what-do-you-do-if-the-file-in-tfs-is-locked-by-someone-else/269002#269002 0 Answer by Dining Philanderer for What do you do if the file in TFS is locked by someone else? Dining Philanderer 2008-11-06T15:03:11Z 2008-11-06T15:03:11Z <p>Have a system administrator reset that users password, log on as that user, unlock all files...</p> <p>I would think this is the solution to almost all 'someone who is no longer at this organization' questions...</p> http://stackoverflow.com/questions/222339/is-it-ok-to-set-the-sequence-of-a-table-to-very-large-value-like-10-million/268696#268696 0 Answer by Dining Philanderer for Is it ok to set the sequence of a table to very large value like 10 million? Dining Philanderer 2008-11-06T13:34:07Z 2008-11-06T13:34:07Z <p>If you are synching two tables why not change the PK seed/increment amount so that everything takes care of itself when a new PK is added?</p> <p>Let's say you had to synch the data from 10 patient tables in 10 different databases.<br> Let's also say that eventually all databases had to be synched into a Patient table at headquarters.</p> <p>Increment the PK by ten for each row but ensure the last digit was different for each database.</p> <p>DB0 10,20,30..<br> DB1 11,21,31..<br> .....<br> DB9 19,29,39..<br></p> <p>When everything is merged there is guaranteed to be no conflicts.</p> <p>This is easily scaled to n database tables. Just make sure your PK key type will not overflow. I think BigInt could be big enough for you...</p> http://stackoverflow.com/questions/1126725/t-sql-equivalent-of-rand/1126768#1126768 Comment by Dining Philanderer on T-SQL equivalent of =rand() Dining Philanderer 2009-07-14T17:30:23Z 2009-07-14T17:30:23Z Import the data in whatever file format you wish using the Tasks--&gt;Import Data feature when right clicking on the database... http://stackoverflow.com/questions/1045047/asp-net-textbox-scrolling-when-disabled/1045068#1045068 Comment by Dining Philanderer on ASP.net textbox scrolling when disabled Dining Philanderer 2009-06-25T17:21:17Z 2009-06-25T17:21:17Z The Label/Replace worked like a charm... Set BorderStyle=&quot;Solid&quot; BorderWidth=&quot;1&quot; and it blends into the page... Thanks!!! http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions Comment by Dining Philanderer on Do you say No to C# Regions? Dining Philanderer 2009-04-16T12:54:05Z 2009-04-16T12:54:05Z Andrew how are you going to use them in interview questions? If I say I like regions in the interview is that an automatic round file? http://stackoverflow.com/questions/681440/why-is-ie6-still-a-corporate-favorite-in-some-organizations Comment by Dining Philanderer on Why is IE6 still a corporate favorite in some organizations? Dining Philanderer 2009-03-25T13:33:52Z 2009-03-25T13:33:52Z &lt;confused&gt; How can this not be programming related when scripting can be browser dependent? On the other end of the spectrum IE8 has scripting compatability errors is this also not programming related? &lt;/confused&gt; http://stackoverflow.com/questions/303954/how-to-get-over-200-reputation-points-every-day/304024#304024 Comment by Dining Philanderer on How to get over 200 reputation points every day? Dining Philanderer 2009-03-24T19:25:40Z 2009-03-24T19:25:40Z Wow that is funny!!! Jon be honored :) http://stackoverflow.com/questions/45325/how-do-you-force-visual-studio-to-regenerate-the-designer-files-for-aspx-ascx-fi/45334#45334 Comment by Dining Philanderer on How do you force Visual Studio to regenerate the .designer files for aspx/ascx files? Dining Philanderer 2009-03-19T20:25:09Z 2009-03-19T20:25:09Z This did not work for me. Now I have an empty file and all of the code behind does not work!!! Rebooting... http://stackoverflow.com/questions/659669/alter-table-with-programmatically-determined-constant-default-value/659698#659698 Comment by Dining Philanderer on ALTER TABLE with programmatically determined constant DEFAULT value Dining Philanderer 2009-03-18T20:57:38Z 2009-03-18T20:57:38Z I accept your answer it worked great! http://stackoverflow.com/questions/659669/alter-table-with-programmatically-determined-constant-default-value/659698#659698 Comment by Dining Philanderer on ALTER TABLE with programmatically determined constant DEFAULT value Dining Philanderer 2009-03-18T19:26:11Z 2009-03-18T19:26:11Z I will try but I thought the documentation said only system functions allowed... http://stackoverflow.com/questions/636384/is-it-more-important-to-get-the-problem-done-or-to-write-programs-that-are-easy-t/636398#636398 Comment by Dining Philanderer on Is it more important to get the problem done or to write programs that are easy to follow? Dining Philanderer 2009-03-16T14:26:03Z 2009-03-16T14:26:03Z Perhaps we need to differentiate between Prototyping and Production code for this discussion. http://stackoverflow.com/questions/606830/what-should-i-do-when-my-boss-tells-me-to-make-passwords-the-same-as-usernames-by/606843#606843 Comment by Dining Philanderer on What should I do when my boss tells me to make passwords the same as usernames by default in our software? Dining Philanderer 2009-03-03T16:00:51Z 2009-03-03T16:00:51Z State your case in an email with proper deference and save everything (IE forward the email response to YOUR personal email account so it doesn't 'disappear'). Finally remember THE BOSS is THE BOSS, most of the time when you fight THE BOSS --- YOU LOSE!!! http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185417#185417 Comment by Dining Philanderer on What are some funny loading statements to keep users amused? Dining Philanderer 2009-02-27T13:52:37Z 2009-02-27T13:52:37Z Make sure you figure out what the most inappropriate combination is before deploying :) http://stackoverflow.com/questions/591196/what-would-you-suggest-as-a-high-school-first-language/591206#591206 Comment by Dining Philanderer on What would you suggest as a high school first language? Dining Philanderer 2009-02-26T18:27:30Z 2009-02-26T18:27:30Z Have them come over to my house and explain the humor to my wife, she doesn't get it... http://stackoverflow.com/questions/556265/opinions-on-using-xml-as-a-stored-proc-parameter-and-return-type/556381#556381 Comment by Dining Philanderer on Opinions on using XML as a Stored Proc Parameter and Return Type. Dining Philanderer 2009-02-17T13:50:11Z 2009-02-17T13:50:11Z Pardon the ignorance... What does AO stand for? http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112239#112239 Comment by Dining Philanderer on What is the worst interviewee answer? Dining Philanderer 2008-12-22T18:10:14Z 2008-12-22T18:10:14Z Ok this is so funny I laughed out loud the THIRD time I read it. WOW!!! http://stackoverflow.com/questions/349878/unable-to-modifiy-active-directory-from-test-production-servers/351232#351232 Comment by Dining Philanderer on Unable to modifiy Active Directory from Test/Production servers Dining Philanderer 2008-12-10T15:21:44Z 2008-12-10T15:21:44Z Troubleshooting with your ideas today, Thanks!!!