User Charles Bretana - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:07:21Z http://stackoverflow.com/feeds/user/32632 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1936386/where-is-transparent-proxy-pointing-to 0 Where is Transparent Proxy pointing to? Charles Bretana 2009-12-20T17:13:20Z 2009-12-20T22:47:52Z <p>I am using .Net Remoting. I have a service exposing a singleton class that a client on another machine can register with, so that the server can broadcast messsages to all registered clients. </p> <pre><code> MessageManager mgr = MessageManager.Instance; //Static Singleton Factory Proprty RemotingServices.Marshal(mgr, MesgURI); </code></pre> <p>Now in my service, in the method where I am publishing these messages, I want to stop the code from sending the same message to the same client more than once. So I am iterating through the server's delegate.InvocationList</p> <pre><code>public event MessageArrived SendMsgToClientEvent; Delegate[] clientList = SendMsgToClientEvent.GetInvocationList(); List&lt;int&gt; dels = new List&lt;int&gt;(); foreach (Delegate d in clientList) try { mAH = (MessageArrived)d; int tgtHC = mAH.Target.GetHashCode(); if (dels.Contains(tgtHC)) // If we already sent SendMsgToClientEvent -= mAH; // to this one, delete it else { mAH.BeginInvoke(msg, OnMsgCallComplete, null); dels.Add(tgtHC); // keep track of which ones we've sent to } } // ..... </code></pre> <p>Now each delegate mAH contains a method (which will be called when the delegate is invoked) It also contains a Target property, which, (for instance methods), is populated with a reference to the object that this method will be called against.</p> <p>But for remote events like this, the delegate has been populated by event registrations from remote clients, over a .Net Remoting channel. So in this case, this target Property is populated with a <em>Transparent Proxy</em> object, not the object on the remote client box where the handler will actually be executed. So my assumption is that even if two delegate registrations come from the same method on the same remote object, they will each still get distinct individual transparent proxies on the server. Now what I want to do is ensure that if a specific client somehow registers more than once, that the server does not transmit the same message more than once to that client. (...and then remove that extra delegate from the invocation List). </p> <p>So my question is: How can I tell, from looking at the delegate, or from the transparent proxy in the delegates' Target Property, that two such delegates are actually from the same object on the same client machine?</p> http://stackoverflow.com/questions/1929917/query-to-select-intervals-from-a-table/1929990#1929990 0 Answer by Charles Bretana for Query to select intervals from a table Charles Bretana 2009-12-18T18:43:21Z 2009-12-20T03:09:04Z <p>try</p> <pre><code> Select d.Id, d.Description, d.Start_Date, n.Start_Date - 1 EndDate From Table d Left Join Table n On n.Start_Date = (Select Min(Start_date) From Table Where Start_Date &gt; Coalesce(d.Start_Date, '1/1/1900') </code></pre> http://stackoverflow.com/questions/1930908/how-do-i-select-the-entire-record-when-using-max-with-group-by/1930952#1930952 1 Answer by Charles Bretana for How Do I Select the Entire Record When Using MAX() With GROUP BY Charles Bretana 2009-12-18T22:06:47Z 2009-12-18T22:12:32Z <p>pretty much exactly the way you'd say it in English</p> <p>"Get me the invoice with the latest Invoice Date"</p> <pre><code>Select * From invoice_items Where invoice_date = (Select Max(invoice_date) From invoice_items) </code></pre> <p>But something is wrong in your schema I think. Since there are multiple rows with the same Invoice_Id, this looks like an Invoice Details or Invoice line items table, (not an Invoice Table). And if so, how can each line item within the same invoice have different InvoiceDates"? If these are different, then they are not invoice dates, they are invoice detail dates, (whatever that means) and should be labeled as so.. </p> http://stackoverflow.com/questions/1929610/collections-and-application-wide-use/1929631#1929631 0 Answer by Charles Bretana for collections and application wide use? Charles Bretana 2009-12-18T17:32:20Z 2009-12-18T17:32:20Z <p>Collections like this are for multiple objects obviously, so you would instantiate them where you are creating a ... collection of objects... If you want to use a ctor, then it should take as it's parameter a ... collection or enumerable set of those objects...</p> <pre><code> // Inheriting from List&lt;UserData&gt; eliminates need for most of your code class UserDataCollection: List&lt;UserData&gt; { public UserDataCollection(IEnumerable&lt;UserData&gt; users) { foreach (UserData usr in users) Add(usr); } } </code></pre> http://stackoverflow.com/questions/1929373/fine-control-over-sql-sort-order/1929466#1929466 3 Answer by Charles Bretana for Fine control over SQL Sort Order Charles Bretana 2009-12-18T16:55:24Z 2009-12-18T17:22:09Z <p>Just add another calculated expression as the first order by Expression, which puts those two values ahead of all others...</p> <pre><code>Select [Other stuff] From Table Order By Case colName When first_val then 0 When second_val then 0 else 1 End, colName </code></pre> <p>or, EDIT (to include @astander's suggestion)</p> <pre><code>Select [Other stuff] From Table Order By Case When colName In (first_Val, second_Val) Then 0 else 1 End, colName </code></pre> <p>and another Edit, to put second_val immediately after first_Val...</p> <pre><code>Select [Other stuff] From Table Order By Case When colName &lt; first_Val And colName &lt;&gt; secondVal Then 0 When colName = first_Val Then 1 When colName = secondVal Then 2 Else 3 End, colName </code></pre> http://stackoverflow.com/questions/1929414/sql-virtual-table/1929438#1929438 3 Answer by Charles Bretana for SQL Virtual Table Charles Bretana 2009-12-18T16:50:35Z 2009-12-18T16:50:35Z <p>In SQL, as Kyle's answer states, you can create a <strong><em>View</em></strong>, which is a kind of Virtual table, but I would strongly recommend that you get a book, or google, <strong><em>Relational database design</em></strong>, before you commit yourself to a database structure. </p> http://stackoverflow.com/questions/1929205/is-there-a-way-to-not-break-code-if-columns-in-a-database-change/1929262#1929262 0 Answer by Charles Bretana for Is there a way to not break code if columns in a database change? Charles Bretana 2009-12-18T16:24:36Z 2009-12-18T16:34:46Z <p>Yes, Use Stored procedures for all access, and alias the actual attribute names in the table for output to the client code... Then if actual column names in the table change, you just have to change the sql in the stored proc, and leave the aliases the same as they were, and the client code can stay the same</p> http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 13 Answer by Charles Bretana for Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T16:15:16Z 2009-12-18T16:32:10Z <p>Because in your setter, you are calling ... the <em>setter</em>, which goes to the setter, and calls ... the <strong><em>setter</em></strong> ... and ... </p> <pre><code> set { albums = value; // &lt; --- This line calls itself again.. Session["albums"] = albums; } </code></pre> <p>What you need to do is just use the the Session["albums"] as the persistent storage for the value... You don't need a private field - that's just creating a redundant copy of the value. Eliminate it entirely, and just put...</p> <pre><code>private List&lt;Albums&gt; Albums { get { if (Session["albums"] != null) return (List&lt;Albums&gt;) Session["albums"]; else return (Session["albums"] = AlbumCollection.GetAlbums()); } set { Session["albums"] = value; } } </code></pre> <p>In certain scenarios where you do not have a persistent store, it's perfectly acceptable for a public property to have just a private member backing field.</p> <p>For more info on C# properties in general, check out the <a href="http://msdn.microsoft.com/en-us/library/aa288470%28VS.71%29.aspx" rel="nofollow">MSDN tutorial</a>.</p> http://stackoverflow.com/questions/1929155/stored-procedure-expects-parameter-which-was-not-supplied/1929278#1929278 0 Answer by Charles Bretana for stored procedure expects parameter which was not supplied Charles Bretana 2009-12-18T16:27:42Z 2009-12-18T16:27:42Z <p>Do you have access to the Stored Procedure? If so, (And <em>if the Stored procedure logic will allow it</em>), modify the declaration of the input parameter to add " <strong><em>= Null</em></strong>" at the end, as in</p> <pre><code> Create procedure ProcName @MyParameterName Integer = Null, -- con't As... </code></pre> http://stackoverflow.com/questions/1928933/c-get-date-time-a-windows-service-started/1928974#1928974 3 Answer by Charles Bretana for C# get date/time a windows service started Charles Bretana 2009-12-18T15:47:42Z 2009-12-18T15:53:29Z <p>In a C# app, write</p> <pre><code> using System.Diagnostics; private static DateTime GetStartTime(string processName) { Process[] processes = Process.GetProcessesByName(processName); if (processes.Length == 0) throw new ApplicationException(string.Format( "Process {0} is not running.", processName)); // ----------------------------- DateTime retVal = DateTime.Now; foreach(Process p in processes) if (p.StartTime &lt; retVal) retVal = p.StartTime; return retVal ; } </code></pre> <p>if processname is not running, this throws an exception, modify to implement whatever alternative behavior you want. Also, if multiple instances of this process are running, this returns when the earliest was started... </p> http://stackoverflow.com/questions/1928809/how-should-i-code-this-paging/1928900#1928900 1 Answer by Charles Bretana for How should i code this paging? Charles Bretana 2009-12-18T15:34:37Z 2009-12-18T15:40:16Z <p>How about (Make it Bold is somewhat psuedoCode cause I don't know what UI you're in...)</p> <pre><code> private static string BuildPaging(int pageNo, int pageCount) { StringBuilder sb = new StringBuilder(); for(int i = 1; i &lt; pageCount; i++) { if (i == pageNo) sb.Append([Make it Bold] + i.ToString("0") + [Make it not Bold]); else if (1 &gt; pageNo - 3 &amp;&amp; i &lt; pageNo + 3) sb.Append(i.ToString("0")); else if ((i == 2 &amp;&amp; pageNo &gt; 4) || (i == PageCount - 1 &amp;&amp; pageNo &lt; PageCount - 2)) sb.Append("..."); } return sb.ToString(); } </code></pre> <p>Only thing is how to make it bold (Depends on whether you're in WinForms or ASP.Net... ... And add stuff to make it a clickable link... </p> http://stackoverflow.com/questions/1928893/delete-a-record-and-all-the-record-that-precede-it/1928919#1928919 2 Answer by Charles Bretana for Delete a record and all the record that precede it Charles Bretana 2009-12-18T15:37:34Z 2009-12-18T15:37:34Z <p>In your question you state "<em>that appear before it</em>." or "<em>preceding records</em>" This concept needs to be defined more explicitly. SQL is based on Set theory - and in a set there is no implicit order to the items in the set (rows in the table) You have to define what <em>preceding</em> means based on the value of some attribute of the row... </p> http://stackoverflow.com/questions/1925496/corporate-developers-do-you-feel-your-code-is-adding-value-to-the-company/1925505#1925505 1 Answer by Charles Bretana for Corporate developers: Do you feel your code is adding value to the company? Charles Bretana 2009-12-18T00:17:28Z 2009-12-18T00:17:28Z <p>Play around on Stack Obverflow a lot... It's a great way to keep your skills sharp and you're helping others out at the same time... </p> http://stackoverflow.com/questions/1924362/select-datetime-data-from-sql-server-colum/1924440#1924440 2 Answer by Charles Bretana for Select datetime data from SQL Server colum Charles Bretana 2009-12-17T20:41:55Z 2009-12-17T20:47:56Z <p>try universal SQL Date Format YYYYMMDD </p> <pre><code>WHERE [NEXT_UPDATE_TIME] &lt; '20091218' </code></pre> <p>see <a href="http://weblogs.asp.net/pleloup/archive/2004/05/28/143960.aspx" rel="nofollow">standard SQL datetime formats</a></p> http://stackoverflow.com/questions/1918742/elegant-way-to-create-a-nested-dictionary-in-c/1918777#1918777 3 Answer by Charles Bretana for Elegant way to create a nested Dictionary in C# Charles Bretana 2009-12-17T00:34:56Z 2009-12-17T20:34:24Z <p>Define your own custom generic <code>NestedDictionary</code> class</p> <pre><code>public class NestedDictionary&lt;K1, K2, V&gt;: Dictionary&lt;K1, Dictionary&lt;K2, V&gt;&gt; {} </code></pre> <p>then in your code you write</p> <pre><code>NestedDictionary&lt;int, int, string&gt; dict = new NestedDictionary&lt;int, int, string&gt; (); </code></pre> <p>if you use the int, int, string one a lot, define a custom class for that too..</p> <pre><code> public class NestedIntStringDictionary: NestedDictionary&lt;int, int, string&gt; {} </code></pre> <p>and then write: </p> <pre><code> NestedIntStringDictionary dict = new NestedIntStringDictionary(); </code></pre> <p>EDIT: To add capability to construct specific instance from provided List of items:</p> <pre><code> public class NestedIntStringDictionary: NestedDictionary&lt;int, int, string&gt; { public NestedIntStringDictionary(IEnumerable&lt;&gt; items) { foreach(Thing t in items) { Dictionary&lt;int, string&gt; innrDict = ContainsKey(t.Foo)? this[t.Foo]: new Dictionary&lt;int, string&gt; (); if (innrDict.ContainsKey(t.Bar)) throw new ArgumentException( string.Format( "key value: {0} is already in dictionary", t.Bar)); else innrDict.Add(t.Bar, t.Baz); } } } </code></pre> <p>and then write: </p> <pre><code> NestedIntStringDictionary dict = new NestedIntStringDictionary(GetThings()); </code></pre> http://stackoverflow.com/questions/1922257/optimizing-t-sql-query-which-constracts-the-same-subtable-twice/1922445#1922445 0 Answer by Charles Bretana for Optimizing T-SQL query which constracts the same subtable twice Charles Bretana 2009-12-17T15:20:13Z 2009-12-17T15:20:13Z <p>You can create two CTEs in a statement. Try this:</p> <pre><code>WITH Sub As (SELECT i.KladrItemName, f.WordFromAddressString, f.WordFromKladr, f.WordPosition WordPositionAddressString, wi.wordNumber WordPositionKladrItem, f.StartPosition, f.EndPosition, f.Metric, f.IsConstruction, i.WordsCount, i.Indeces FROM dbo.tWordsFromKladr w JOIN dbo.tWordKladrItems wi ON wi.ID = i.wordID JOIN dbo.tFoundWords f ON f.WordFromKladr = w.WordFromKladr JOIN dbo.tKladrItems i ON wi.kladrItemID = i.id ), CTE As (SELECT KladrItemName _KladrItemName, WordPositionKladrItem _WordPositionKladrItem, WordPositionAddressString _WordPositionAddressString, StartPosition _StartPosition , EndPosition _EndPosition, Metric _Metric, IsConstruction _IsConstruction, WordsCount _WordsCount, Indeces _Indeces, WordPositionAddressString _StartWordIndex , WordPositionAddressString _EndWordIndex, 1 _StepNumber FROM Sub T UNION ALL SELECT KladrItemName, WordPositionKladrItem, WordPositionAddressString, CASE WHEN StartPosition &lt; _EndPosition THEN EndPosition ELSE _EndPosition END, -- Max CAST(Metric + _Metric AS numeric(20, 10)), IsConstruction + _IsConstruction, WordsCount, Indeces, CASE WHEN _StartWordIndex WordPositionAddressString THEN _EndWordIndex ELSE WordPositionAddressString END, 1 + _StepNumber FROM Sub Tab JOIN CTE ON Tab.KladrItemName = CTE._KladrItemName AND Tab.WordPositionKladrItem &gt; CTE._WordPositionKladrItem AND Tab.WordPositionAddressString &gt; CTE._WordPositionAddressString) SELECT DISTINCT _KladrItemName KladrItemName, _StartPosition StartPosition, _EndPosition EndPosition, _Metric SumMetric,_IsConstruction SumIsConstruction, _Indeces Indeces FROM CTE WHERE_StepNumber = _WordsCount AND (_IsConstruction = 0 or (_IsConstruction = 1 and _WordsCount &gt; 1)) AND _EndWordIndex - _StartWordIndex + 1 = _WordsCountoption (maxrecursion 0) </code></pre> http://stackoverflow.com/questions/1919288/a-sql-aggregation-query/1919349#1919349 0 Answer by Charles Bretana for a SQL aggregation query Charles Bretana 2009-12-17T03:53:00Z 2009-12-17T14:49:09Z <p>As mentioned before, you have to group by an expression that creates buckets defined by the calendar Month</p> <pre><code> Select dateadd(month, datediff(month, 0, datecol-14), 0 ) CalendarMonth, sum(col) Total From Table Group By dateadd(month, datediff(month, 0, datecol-14), 0) </code></pre> <p>The expresion <code>dateadd(month, datediff(month, 0, datecol-14), 0)</code> will always generate a date of midnight, the first of the month which the date 14 days ago was in... </p> <p>NOTE: The group by expresion or expressions must be identical to, and include all expressions in the select clause that are not aggregate functions</p> <p>EDIT: This expression creates buckets by month, from the 15th through the 14th of the following month, but <strong><em>describes</em></strong> the buckets using the date of the first of the month the bucket starts in. i.e., It generates a date of the first of the month the start of the bucket is in... for example, any date from 15 Nov through 14 Dec will give you 1 Nov, any date from 15 Dec through 14 Jan will give you 1 Dec, etc. </p> http://stackoverflow.com/questions/1919285/null-foreign-key/1919327#1919327 0 Answer by Charles Bretana for Null Foreign Key Charles Bretana 2009-12-17T03:46:30Z 2009-12-17T04:13:35Z <p>Product to Category: Many-to-many </p> <p>Product to Subcategory: One-to-one</p> <p>Subcategory to Category: Many-to-one</p> <p>That doesn't make sense. If product and subcategory are one to one, then they are the same entity. Or are they one to 0/1 ?</p> <p>In any event, either way, If they're one to one or one to zero or one, then every product is from a different subcategory, and every subcategory has at most one product assigne to it. If this is true then it cannot be the case that products are one to many with Category and subcategories are one to many with category.</p> <p>Think about it. If a there can be many Categorys for a single Product, but only one subcategory for a Product, then there can be many Categories for a subCategory, which is the opposite of what you have as cardinality for aategory and subcategories: one to many</p> <p>Normally, the relationship for Products Categories and SubCategories are as follows:</p> <p>Category to SubCategory one to Many (Many subcategries per Category - Only one Category per subcategory)</p> <p>SubCategory to Product: One to Many, Many products can be in each subcategory. but every product is in at most one subcategory.</p> <p>Are you sure that isn't also your structure? ... </p> http://stackoverflow.com/questions/1917718/are-multiple-conditional-operators-in-this-situation-a-good-idea/1917755#1917755 11 Answer by Charles Bretana for Are multiple conditional operators in this situation a good idea? Charles Bretana 2009-12-16T21:08:45Z 2009-12-17T00:02:43Z <p>Not only is there nothing wrong with it, it communicates the intent of the operation in the most concise and clear way possible.</p> <p>Replacing with if else, or switch construction requires that the snippet </p> <pre><code>"new_vehicle = " </code></pre> <p>be repeated in every instance, which requires that the reader read every repeating instance of it to ensure that it is in fact the same in every instance.. </p> http://stackoverflow.com/questions/1918556/sql-select-distinct-values-from-1-column/1918577#1918577 0 Answer by Charles Bretana for SQL: Select distinct values from 1 column Charles Bretana 2009-12-16T23:37:23Z 2009-12-16T23:38:57Z <p>just group By those 2 columns</p> <pre><code> Select Min(BoekingPlaatsId), Min(bewonerId), naam, voornaam from table group By naam, voornaam </code></pre> http://stackoverflow.com/questions/1917691/sql-indexing-computed-column-vs-field-used-by-computed-column/1917808#1917808 1 Answer by Charles Bretana for SQL Indexing - Computed Column vs Field Used by Computed Column Charles Bretana 2009-12-16T21:16:58Z 2009-12-16T21:16:58Z <p>Placing an index on an attribute whose values are limited to a very small domain (obviously two-valued is the smallest possible) does not make sense except for special edge cases, (such as when the rows are distributed 90%-10% between the 2 values)</p> <p>This is because any use of the index to find one of the values (assuming the rows are evenly distributed approximately 50-50) will return about half the total rows in the table. If the balanced-tree (B-Tree) index you would create is three or four levels deep, that means 3 or 4 IO operations per row retrieved, which would be more than the number of rows in the table. </p> http://stackoverflow.com/questions/1916753/find-control-inside-footer-of-nested-repeater-net-2-0-c/1916810#1916810 0 Answer by Charles Bretana for Find control inside footer of nested repeater? (.NET 2.0 , C#) Charles Bretana 2009-12-16T18:50:11Z 2009-12-16T21:02:11Z <p>It's been a while since I did this, but as an idea to try, </p> <p>Since it's nested, the actual name of the nested header or footer control in the html, is a concatenation of the outer repeater control name, (I Think), an underscore ('_'), and the name of the inner header/footer control... Are you using this in your find?</p> <p>Second suggestion: Change yr code</p> <pre><code>foreach (RepeaterItem item in variantRepeater.Items) { decimal quantity = 0; decimal.TryParse(((DropDownList)item.FindControl( "quantityLister")).SelectedValue, out quantity); if (quantity &gt; 0) { string variantId = ((HiddenField)item.FindControl("variantId")).Value; orderForm.LineItems.Add( new LineItem(catalogName, productId, variantId, quantity)); basketUpdated = true; } } </code></pre> <p>And change it to:</p> <pre><code>foreach (RepeaterItem item in variantRepeater.Items) { decimal quantity = 0; decimal.TryParse(((DropDownList)item.FindControl( "quantityLister")).SelectedValue, out quantity); if (quantity &gt; 0) { if (item == null) throw new ApplicationException( "Can't locate RepeaterItem"); object obj = item.FindControl("variantId"); if (obj == null) { string sNL = Environment.NewLine; StringBuilder sb = new StringBuilder( "Can't locate variantId HiddenField" + sNL + "item Controls are:" + sNL); foreach(Control ctrl in item.Controls) sb.Append(ctrl.Name + sNL); throw new ApplicationException(sb.ToString()); } if (!(obj is HiddenField)) throw new ApplicationException( "variantId is not a HiddenField"); HiddenField hfld = obj as HiddenField; string variantId = hfld.Value; orderForm.LineItems.Add( new LineItem( catalogName, productId, variantId, quantity)); basketUpdated = true; } } </code></pre> <p>Run it again and see what the error is... </p> http://stackoverflow.com/questions/1915180/whats-the-best-way-to-have-multiple-threads-doing-work-and-waiting-for-all-of-t/1915369#1915369 2 Answer by Charles Bretana for What's the best way to have multiple threads doing work, and waiting for all of them to complete? Charles Bretana 2009-12-16T15:29:23Z 2009-12-16T15:29:23Z <p>I use a static utility method to examine all the individual wait handles..</p> <pre><code> public static void WaitAll(WaitHandle[] handles) { if (handles == null) throw new ArgumentNullException("handles", "WaitHandle[] handles was null"); foreach (WaitHandle wh in handles) wh.WaitOne(); } </code></pre> <p>Then in my main thread, I create a List of these wait handles, and for each delegate I put in my ThreadPool Queue, I add the wait handle to the List... </p> <pre><code> List&lt;WaitHandle&gt; waitHndls = new List&lt;WaitHandle&gt;(); foreach (iterator logic ) { ManualResetEvent txEvnt = new ManualResetEvent(false); ThreadPool.QueueUserWorkItem( delegate { try { // Code to process each task... } // Finally, set each wait handle when done finally { lock (locker) txEvnt.Set(); } }); waitHndls.Add(txEvnt); // Add wait handle to List } util.WaitAll(waitHndls.ToArray()); // Check all wait Handles in List </code></pre> http://stackoverflow.com/questions/1902864/collection-of-domain-objects-in-a-domain-model/1902928#1902928 1 Answer by Charles Bretana for Collection of Domain Objects in a Domain Model Charles Bretana 2009-12-14T19:24:07Z 2009-12-14T20:14:40Z <p>I would vote for 2) Make it a <strong><em>DomainService</em></strong>. The code to implement it could be in either a DomainServices class, an AdjustmentServices class, or a ValidateAdjustmentService class, depending on what other services are in the domain model, and what makes the most sense from an organizational perspective. </p> <p>Another option, (if the rules implemented by this service are business rules) is to implement this as a SPECIFICATION. (Check out pages 224 - 240 in DDD) </p> http://stackoverflow.com/questions/1902712/psql-select-max-value-per-minute-per-id-for-multiple-values-a-minute-per-id/1902751#1902751 0 Answer by Charles Bretana for PSQL select max value per minute per id for multiple values a minute per id? Charles Bretana 2009-12-14T18:50:06Z 2009-12-14T18:50:06Z <p>You have to group By an expression that "defines" the one minute buckets you want the maximum values in:</p> <pre><code>select sensor_id, DateHourMinuteFunction(read_time), Max(voltage) from table Group By sensor_id, DateHourMinuteFunction(read_time) </code></pre> <p>Where <code>DateHourMinuteFunction(read_time)</code> is some function or Sql Expression in your database that will return an expression that is the same for any read_time in the same minute(i.e., it needs to strip off the seconds values)</p> <p>Can your database convert a date time to a string? If so, then at a minimum write an expression that converts it to a string, formatted as Month day year, hour, minute, second, and then strip off the seconds part... </p> <p>Assuming what you already have in the datetime column was a string, then just use substring on it... </p> <pre><code>select sensor_id, SubString(Cast(read_time as varChar(22)), 0, 16), Max(voltage) from table Group By sensor_id, SubString(Cast(read_time as varChar(22)), 0, 16) </code></pre> http://stackoverflow.com/questions/1902432/finding-out-no-bits-set-in-a-variable-in-faster-manner/1902476#1902476 0 Answer by Charles Bretana for Finding out no bits set in a variable in faster manner Charles Bretana 2009-12-14T18:04:23Z 2009-12-14T18:42:55Z <p>If variable is an integer, you can count bits using </p> <pre><code> public static int BitCount(int x) { return ((x == 0) ? 0 : ((x &lt; 0) ? 1 : 0) + BitCount(x &lt;&lt;= 1)); } </code></pre> <p>Explanation: Recursive, if number is zero, no bits are set, and function returns a zero else, it checks the sign bit and if set stores 1 else stores a 0, then shifts the entire number one bit to the left eliminating the sign bit just examined, and putting a zero in rightmost bit, and calls itself again with new left-Shifted value. </p> <p>Overall result is to examine each bit from leftmost to rightmost, and for each one set, stores on stack whether that bit was set (as 1/0), left-Shits next bit into sign bit position and resurses. When it finally gets to the last bit set , the value will be zero and recursion will stop. Function then returns up the call stack, adding up all the temp values it stored on the way down. Returns total</p> http://stackoverflow.com/questions/1902014/mysql-delete-all-results-having-count1/1902066#1902066 1 Answer by Charles Bretana for MYSQL delete all results having count(*)=1 Charles Bretana 2009-12-14T16:50:28Z 2009-12-14T18:01:46Z <p><s>The SubQuery should work</p> <pre><code> Delete from taged Where sesskey in (Select sesskey From taged Group by sesskey Having count(*) = 1) </code></pre> <p></s></p> <p>EDIT: Thanks to @Quassnoi comment below... The above will <strong><em>NOT</em></strong> work in MySql, as MySql restricts referencing the table being updated or deleted from, in a Subquery i you must do the same thing using a Join ... </p> http://stackoverflow.com/questions/1901925/sql-return-rows-where-count-of-children-does-not-equal-column-value/1901946#1901946 1 Answer by Charles Bretana for SQL return rows where count of children does not equal column value Charles Bretana 2009-12-14T16:32:01Z 2009-12-14T16:32:01Z <p>try:</p> <pre><code>Select i.ItemId, i.ItemName From Item i Left Join SubItem s On s.ItemID = i.ItemId Group By i.ItemId, i.ItemName, i.ExpectedSubItems Having Count(*) &lt;&gt; i.ExpectedSubitems </code></pre> http://stackoverflow.com/questions/1901594/function-for-calculating-working-week-sql-server/1901727#1901727 1 Answer by Charles Bretana for function for calculating working week SQL Server Charles Bretana 2009-12-14T15:55:51Z 2009-12-14T15:55:51Z <p>Why not add another Case as First Case</p> <pre><code>"Case When DateDiff(week, '" + CSIActualDate + "', '" + CSILOSDate + "') &gt; 0 Then 'Outside'" + --- then the rest of the cases ... </code></pre> http://stackoverflow.com/questions/1901489/choosing-where-to-attach-a-foreign-key-between-two-tables/1901530#1901530 3 Answer by Charles Bretana for Choosing where to attach a foreign key between two tables? Charles Bretana 2009-12-14T15:22:52Z 2009-12-14T15:22:52Z <p>You don't have two options.. A Foreign Key constraint must be attached to the table, (and to the column) that has has the Foreign Key in it. And it must reference (or point to ) the Primary key in the other table. I don't quite understand what you mean when you say you have done this a number of times either way... What other Way ?? </p> http://stackoverflow.com/questions/1929917/query-to-select-intervals-from-a-table/1929990#1929990 Comment by Charles Bretana on Query to select intervals from a table Charles Bretana 2009-12-20T03:14:08Z 2009-12-20T03:14:08Z cause the first row in yr source tabvle has null Start Date.. To fix that, use Coalescee, as in edited version above... http://stackoverflow.com/questions/1929917/query-to-select-intervals-from-a-table/1929990#1929990 Comment by Charles Bretana on Query to select intervals from a table Charles Bretana 2009-12-18T21:47:30Z 2009-12-18T21:47:30Z what additional rows is it returning. If your data is as you describe above, it should return one row per row in your table. http://stackoverflow.com/questions/1928933/c-get-date-time-a-windows-service-started/1928974#1928974 Comment by Charles Bretana on C# get date/time a windows service started Charles Bretana 2009-12-18T21:43:02Z 2009-12-18T21:43:02Z @Serge. If we're talking about NT or Windows Services, they always run in their own process space, no? Can you run one in a separate Host Process ? If you can, then I'd venture to say that the &quot;service&quot; you are talking about isn;t really a service in that sense, i.e, it probably does not derive from the .Net class System.ServiceProcess.ServiceBase, http://stackoverflow.com/questions/1928933/c-get-date-time-a-windows-service-started/1928974#1928974 Comment by Charles Bretana on C# get date/time a windows service started Charles Bretana 2009-12-18T21:40:25Z 2009-12-18T21:40:25Z Code uses processName cause it will work for any process, not just a service host http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 Comment by Charles Bretana on Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T21:32:22Z 2009-12-18T21:32:22Z Yes, and, again, as I mentioned, Generally, with standard ASP.Net session, I don't believe there is any real performance issue with in ASP.Net. As I recall, it might be a bit slower if you elect to store session in a database, or on a shared server, (which you might do if your Web Server is in a farm and you wish to share session state among all the members in the farm) http://stackoverflow.com/questions/1929610/collections-and-application-wide-use/1929631#1929631 Comment by Charles Bretana on collections and application wide use? Charles Bretana 2009-12-18T17:38:39Z 2009-12-18T17:38:39Z Then you create it in Application's main, when app starts up, and either pass the reference to it around to everywhere you need it, or make it globally accessible (put the single instance of this collection into a static property of some static class) http://stackoverflow.com/questions/1929373/fine-control-over-sql-sort-order/1929466#1929466 Comment by Charles Bretana on Fine control over SQL Sort Order Charles Bretana 2009-12-18T17:19:51Z 2009-12-18T17:19:51Z @Jonathan, then you need an expression which represents this. It sounds like all rows are sorted by colName except the one with value = second_val, which needs to be sorted immediately after the row(s) with first_val. so see my edit.. http://stackoverflow.com/questions/1929373/fine-control-over-sql-sort-order/1929466#1929466 Comment by Charles Bretana on Fine control over SQL Sort Order Charles Bretana 2009-12-18T17:12:40Z 2009-12-18T17:12:40Z @Jonathan, Sure, you can use Case just about anywhere. @astander, good one.. I wasn't sure you could use In (List) syntax inside a Case... http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 Comment by Charles Bretana on Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T16:59:16Z 2009-12-18T16:59:16Z He's talking about the difference in read performance accssing a session variable vs. accessing a variable in a method's stack frame. It used to be (some time ago - old classic ASP) that variables or data stored in Session state were substantially more difficult and/or prone to errors than other variables. I don;t believe this is stil the case with ASP.Net, but I'm not sure. http://stackoverflow.com/questions/1928933/c-get-date-time-a-windows-service-started/1928974#1928974 Comment by Charles Bretana on C# get date/time a windows service started Charles Bretana 2009-12-18T16:48:03Z 2009-12-18T16:48:03Z ahhh, If the OP needs to know for a non-running service, when it was last started, then he needs to look in event log. ... Although if service is not running, I'm not sure why the last start time would be helpful. http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 Comment by Charles Bretana on Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T16:38:09Z 2009-12-18T16:38:09Z @Xaisoft, Definitely need &quot;Session[&quot;albums&quot;] = value&quot; the other was my bad for copy paste from yr code... http://stackoverflow.com/questions/1929205/is-there-a-way-to-not-break-code-if-columns-in-a-database-change/1929262#1929262 Comment by Charles Bretana on Is there a way to not break code if columns in a database change? Charles Bretana 2009-12-18T16:36:33Z 2009-12-18T16:36:33Z oh, sorry, I was not clear, by &quot;table names&quot; I meant the &quot;column names in the table&quot; -- and if someone cjhanges the aliases, then someone else needs to go change them back... http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 Comment by Charles Bretana on Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T16:32:01Z 2009-12-18T16:32:01Z @Wim, not at all, But I don;t see them.. Perhaps I was editing at the same time and overwrote yr changes ? If so, please add again... http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 Comment by Charles Bretana on Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T16:28:30Z 2009-12-18T16:28:30Z @tanascius, Thx, correctted... http://stackoverflow.com/questions/1929141/why-does-this-cause-a-stackoverflow-error/1929176#1929176 Comment by Charles Bretana on Why does this cause a StackOverFlow error? Charles Bretana 2009-12-18T16:22:26Z 2009-12-18T16:22:26Z See my second example...