User Sung Meister - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:59:31Z http://stackoverflow.com/feeds/user/4035 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/619320/what-do-you-do-when-you-run-into-a-programmers-block 2 What do you do when you run into a "Programmer's Block"? [closed] Sung Meister 2009-03-06T15:50:55Z 2009-11-24T12:16:51Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone">What tricks do you use to get yourself “in the zone”?</a></p> </blockquote> <p>I am having a programmer's block right now...</p> <p>What do you do to get back into track?</p> <p><strong>[UPDATE]</strong> Ah nuts. It's not a programmer's block I am having. It's cold that I am having.</p> http://stackoverflow.com/questions/1769970/t-sql-how-to-get-these-results/1781117#1781117 0 Answer by Sung Meister for T-Sql, How to get these results ? Sung Meister 2009-11-23T04:38:07Z 2009-11-23T04:38:07Z <p>For this kind of cases, there is another way to get the <em>latest</em> record by using <a href="http://msdn.microsoft.com/en-us/library/ms189798.aspx" rel="nofollow">SQL Server Ranking functions</a>.</p> <p>I have used <a href="http://msdn.microsoft.com/en-us/library/ms173825.aspx" rel="nofollow"><code>DENSE_RANK()</code></a> for my answer, but you can use <a href="http://msdn.microsoft.com/en-us/library/ms176102.aspx" rel="nofollow"><code>RANK()</code></a>, instead for your particular problem.<br /> (<strong>note</strong>: code below is not tested. If you were to provide schema for tables, I would have tested with sample data)</p> <pre><code>;with RankedResult as ( SELECT PA.refPatient_id , PA.datee , PR.temporary, , PA.statue --; Last datee has the lowest rank value of 1, , dense_rank() over (partition by PA.refPatient_id order by PA.datee desc) as [Rank] FROM PatientClinicActs AS PA join PatientStatueReasons AS PR on PA.refreason_id = PR.reason_id WHERE PA.refClinic_id = 25 ) select distinct * from RankedResult --; Get only the last result. where [Rank] = 1 </code></pre> http://stackoverflow.com/questions/1766061/tsql-how-to-get-a-list-of-groups-that-a-user-belongs-to-in-active-diretory 1 TSQL: How to get a list of groups that a user belongs to in Active Diretory Sung Meister 2009-11-19T19:50:32Z 2009-11-19T20:36:21Z <p>I have two queries that retrieve all groups and all users in a domain, <code>Mydomain</code></p> <pre><code>--; Get all groups in domain MyDomain select * from OpenQuery(ADSI, ' SELECT samaccountname,mail,sn,name, cn, objectCategory FROM ''LDAP://Mydomain/CN=users,DC=Mydomain,DC=com'' WHERE objectCategory=''group'' ORDER BY cn ') --; Get all users in domain MyDomain select * from OpenQuery(ADSI,' SELECT objectCategory, cn, sn, mail, name, department,samaccountname FROM ''LDAP://Mydomaindomain/CN=users,DC=Mydomain,DC=com'' WHERE objectCategory=''user'' ORDER BY cn ') -- where samaccountname='mylogin' </code></pre> <p>What I would like to find out is, <br /></p> <p><strong>How do you retrieve a list of all groups in <code>MyDomain</code> that a particular user belongs to?</strong></p> <p><strong>[UPDATE]</strong> I was able to get the opposite result <br /> Given the group name, retrieve all users</p> <pre><code>select * from OpenQuery(ADSI, 'SELECT objectCategory, cn, sn, mail, name, department FROM ''LDAP://Mydomain/CN=users,DC=wl-domain,DC=com'' WHERE MemberOf=''cn=_____GROUPNAME_____,CN=users,DC=Mydomain,DC=com'' ORDER BY cn' ) </code></pre> http://stackoverflow.com/questions/68886/learning-new-language-between-ruby-f 4 Learning New Language between Ruby & F# Sung Meister 2008-09-16T02:27:27Z 2009-11-19T01:33:36Z <p>After finish reading "The Pragmatic Programmer", I have come to a conclusion that it's time for me to learn some new language other than C#/VB.NET every year.</p> <p>I have come down to 2 languages that I would like to go with. Ruby &amp; F#</p> <p>Should I go with Ruby or F#? That is the question.</p> <p>Ruby is dynamic language, where a lot of C# features seem to came from F# is a functional language which I have never been exposed to.</p> <p>OK, I have been think so much about which one to go with. Can someone give me a tip on what I need to consider before delving into either of those languages?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1738534/how-to-refresh-the-definition-of-a-t-sql-user-defined-function-after-a-dependent/1738562#1738562 2 Answer by Sung Meister for How to refresh the definition of a T-SQL user-defined function after a dependent object is redefined? Sung Meister 2009-11-15T19:40:50Z 2009-11-15T19:40:50Z <p>Short, easy answer is <strong>No</strong>. <BR /></p> <p>You have to redefine the <code>RETURN TABLE</code> statement in Tabular UDF, <code>GetFoo()</code> <br /> whenever the definition of <code>v_Foo</code> changes.</p> <p>But there is a way to get around it (translated as not practical).</p> <ol> <li>Create a <code>DDL</code> trigger on <a href="http://msdn.microsoft.com/en-us/library/ms189871%28SQL.90%29.aspx" rel="nofollow"><code>ALTER_VIEW</code></a> event.</li> <li>Then use a dynamic SQL to create the <code>GetFoo()</code>.</li> </ol> http://stackoverflow.com/questions/1566524/name-xml-result-column-of-tsql-for-xml-explicit 0 Name XML result column of TSQL "for xml explicit"? Sung Meister 2009-10-14T14:14:35Z 2009-11-13T21:08:44Z <p>I have a query that uses <code>for xml explit</code> to return XML result.</p> <p>select ... from ... order by [BatchType!1!TypeName], [FormType!2!TypeName], Tag, Parent for xml explicit, root('ClientImages')</p> <p>But the name of resultant column name is something as cryptic as</p> <p><img src="http://farm3.static.flickr.com/2578/4011608808%5F30c0b16e35%5Fo.png" alt="alt text" /></p> <p><strong>Is there a way to change the column name?</strong></p> <p><hr /></p> <p><strong>[ANSWER]</strong> I had a several nested <code>WITH</code> statements so I have saved the result of query without applying <code>FOR XML EXPLICIT</code> into a temp table <code>@xmlTable</code> and then set the XML EXPLICIT result to an XML then returned it.</p> <pre><code>declare @xmlResult xml set @xmlResult =( select * from @xmlTable for xml explicit, root('ClientImages')) select @xmlResult as XmlResult </code></pre> http://stackoverflow.com/questions/1202496/how-to-convert-sql-server-xml-type-value-xsinil-of-datetime-to-null 0 How to convert SQL Server XML type value (xsi:nil) of DateTime to null Sung Meister 2009-07-29T19:27:43Z 2009-11-13T09:51:43Z <p>Is there a way to query SQL Server XML type so that for an element with <code>xsi:nil="true"</code>, return null instead of default datetime value, which is <code>1900-01-01 00:00:00.000</code>?</p> <p>here is a code snippet</p> <pre><code>declare @data xml set @data = '&lt;DOD xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /&gt;' select Value1 = @data.value('/DOD[1]', 'datetime'), Value2 = IsNull(@data.value('/DOD[1]', 'datetime'), 'NOT NULL?'), Value3 = nullif(@data.value('/DOD[1]', 'datetime'), '1900-01-01') </code></pre> <p>Value1 &amp; Value2 both returns <code>1900-01-01 00:00:00.000</code>. Is there a way to return a null, instead? without using <code>nullif</code>? </p> http://stackoverflow.com/questions/1713054/whats-the-difference-between-and-sys-schemas 1 What's the difference between "::" and "sys" schemas? Sung Meister 2009-11-11T04:41:19Z 2009-11-11T09:46:05Z <p>As far as I know, BOL exmaple on <a href="http://msdn.microsoft.com/en-us/library/ms173875.aspx" rel="nofollow"><code>fn_trace_getinfo</code></a> used to use <br /> <code>::</code> instead of <code>sys</code> schema in the example like following</p> <p>From </p> <pre><code> SELECT * FROM ::fn_trace_getinfo(default) </code></pre> <p>To</p> <pre><code> SELECT * FROM sys.fn_trace_getinfo(default) </code></pre> <p><strong>Are there any differences between those two?</strong><br /> And <strong>what does <code>::</code> mean?</strong></p> http://stackoverflow.com/questions/1618289/how-to-get-web-site-users-windows-login-name-from-stored-procedure-invoked-throu 0 How to get web site user's Windows login name from stored procedure invoked through website Sung Meister 2009-10-24T15:35:21Z 2009-11-08T10:10:31Z <p>I have a web page that runs under an account named, <code>WebUser</code> (IIS runs under this account)</p> <p>Now the problem here is that, when the webpage is accessed by users (intranet), <br /> users are authenticated through <em>Windows Authentication</em>.</p> <p>The webpage calls a stored procedure, <code>SaveClientInfo</code>. When I was trying to get the user's name (say, <strong>User1</strong>) who was calling <code>SaveClientInfo</code>, <br /> I was getting <strong>WebUser</strong> instead of <strong>User1</strong> through <a href="http://msdn.microsoft.com/en-us/library/ms179930.aspx" rel="nofollow"><code>SYSTEM_USER</code></a></p> <p><strong>Is there a way to get <em>User1</em> from <code>SaveClientInfo</code> without having to pass in the user name to the stored procedure?</strong></p> <p>Here is the relevant piece of sproc definition</p> <pre><code>create procedure SaveClientInfo @ClientID int ... --; other parameters as begin declare @UserName sysname --; returns the name of user name that IIS runs under --; But I would like to log the name of the person --; who is accesing the site through Windows Authentication select @UserName = SYSTEM_USER --; Save client data and the person who saved the info ... end GO </code></pre> http://stackoverflow.com/questions/1694255/tsql-any-benefits-for-explicitly-specifying-nvarchar-in-a-string 0 TSQL: Any benefits for explicitly specifying NVARCHAR in a string? Sung Meister 2009-11-07T20:14:29Z 2009-11-07T21:09:56Z <p>When you add pass a new <code>job_type</code> to <a href="http://technet.microsoft.com/en-us/library/bb510626.aspx" rel="nofollow"><code>sys.sp_cdc_add_job @job_type</code></a>, <br /> (which is of type <code>nvarchar(20)</code>)</p> <p>You can pass the argument as either </p> <ul> <li><code>N'</code>cleanup'</li> <li>cleanup</li> </ul> <p><strong>Are there any reasons or benefits to use the former syntax using <code>N'</code> to pass the argument to stored procedures?</strong></p> http://stackoverflow.com/questions/1668386/tsql-how-to-return-2-values-with-one-case-statement 0 TSQL - How to return 2 values with one case statement? Sung Meister 2009-11-03T16:17:36Z 2009-11-03T16:46:43Z <p>Is there a way to use one <a href="http://msdn.microsoft.com/en-us/library/ms181765.aspx" rel="nofollow"><code>CASE</code></a> statement and return 2 different values?</p> <p>Following query has 2 <code>CASE</code> statements with same conditions.</p> <pre><code>select case when DA.value = 1 then da.Good else da.Bad end as Foo, case when DA.value = 1 then ot.Good else ot.Bad end as Bar, from someTable DA (nolock) join otherTable OT (nolock) on OT... where ... </code></pre> <p>Is there anyway, to specify that <code>CASE</code> statement <strong><em>once</em></strong>? <br /> so that there is no need to keep both <code>CASE</code> statements in sync whenever the condition changes?</p> http://stackoverflow.com/questions/1521598/how-to-get-procedure-text-before-alter-from-ddl-trigger 2 How to get procedure text before ALTER from DDL trigger Sung Meister 2009-10-05T18:17:43Z 2009-11-01T09:39:11Z <p>I am creating a trigger to track how procedure text has been <code>ALTER</code>ed.</p> <p>Inside a database DDL trigger, it's possible to access current procedure Text through <code>/EVENT_INSTANCE/TSQLCommand</code>.</p> <p>Even after investigating <a href="http://msdn.microsoft.com/en-us/library/ms173781.aspx" rel="nofollow"><code>EVENTDATA()</code></a>, it did not contain values for previous definition of procedure before <code>ALTER</code>.</p> <p>Is there a way to retrieve previous text like how it's possible to access deleted values in DML triggers using <code>DELETED</code> table?</p> <pre><code>create trigger trgDDLAuditQuery on database for alter_procedure as begin set nocount on; declare @data xml set @data = EVENTDATA() insert dbo.tblQueryAudit(ObjectName, TSQLCommand) select @data.value('(/EVENT_INSTANCE/ObjectName)[1]', 'nvarchar(256)'), --; Only gets currently changed procedure text, not previous one @data.value('(/EVENT_INSTANCE/TSQLCommand)[1]', 'nvarchar(max)') end GO </code></pre> http://stackoverflow.com/questions/1627600/how-do-you-implement-software-transactional-memory/1627893#1627893 0 Answer by Sung Meister for How do you implement Software Transactional Memory? Sung Meister 2009-10-26T23:23:33Z 2009-10-26T23:23:33Z <p>If you are going with .NET framework, </p> <p>You can check out this experimental</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/devlabs/ee334183.aspx" rel="nofollow">.NET 4.0 STM.Net</a><br /></li> <li>.NET rocks podcast on STM.Net: <a href="http://www.dotnetrocks.com/default.aspx?showNum=487" rel="nofollow">Dana Groff and Yossi Levanoni Talk STM</a></li> </ul> http://stackoverflow.com/questions/1616047/how-to-pass-generic-type-parameter-to-lambda-expression 0 How to pass Generic Type parameter to lambda expression? Sung Meister 2009-10-23T21:37:07Z 2009-10-23T23:00:30Z <p>I have a lambda expression which accepts, a <code>int?</code> (nullable integer), <br /> which returns value if value exists or <a href="http://msdn.microsoft.com/en-us/library/system.dbnull.value.aspx" rel="nofollow"><code>DBNull.Value</code></a> otherwise.</p> <pre><code>Func&lt;int?, object&gt; getId = id =&gt; id.HasValue ? id.Value : (object)DBNull.Value; </code></pre> <p>The goal here is that, I want to make that expression slightly a bit more generic so that I can pass any nullable types like, <code>DateTime?</code></p> <p>So here is a non-functional code I was starting off with, but not sure <strong>where</strong> to specify nullable's <em>type</em>.</p> <pre><code>int? imageId; DateTime? actionDate; Func&lt;Nullable&lt;T&gt;, object&gt; getValue = id =&gt; id.HasValue ? id.Value : (object) DBNull.Value; SaveImage(getValue(imageId), getValue(actionDate)); </code></pre> <p><strong>Is it possible to specify generic type</strong> or should I create a named function to do so?</p> http://stackoverflow.com/questions/1609952/how-to-set-asp-net-label-text-to-current-user-name 0 How to set ASP.NET label text to current user name Sung Meister 2009-10-22T21:07:35Z 2009-10-23T03:22:07Z <p>I am trying to set a user name to a label, but not sure if this is the right syntax - <br /> adding following markup generates a parse error</p> <pre><code>&lt;asp:Label ID="userNameLabel" runat="server" Text='&lt;%= User.Identity.Name.Split(new char[]{'\\'})[1] %&gt;' /&gt; </code></pre> <p>The main problem here is that, I do not know what <code>&lt;%= %&gt;</code> or <code>&lt;%# %&gt;</code> are called, thus cannot Google/Bing.</p> <p>Can someone point me to a right direction?</p> http://stackoverflow.com/questions/1609952/how-to-set-asp-net-label-text-to-current-user-name/1611221#1611221 0 Answer by Sung Meister for How to set ASP.NET label text to current user name Sung Meister 2009-10-23T03:22:07Z 2009-10-23T03:22:07Z <p>This works as well.</p> <pre><code> &lt;asp:Label ID="userNameLabel" runat="server"&gt; &lt;%= User.Identity.Name %&gt; &lt;/asp:Label&gt; </code></pre> http://stackoverflow.com/questions/1592328/how-to-cancel-edit-disable-cached-input-of-type-text-value 0 How to cancel edit/disable cached input (of type text) value? Sung Meister 2009-10-20T03:47:25Z 2009-10-21T01:03:21Z <p>I have an input of type <code>text</code>, from which I have already entered value <code>1234</code> <br />it has been saved in cache as shown below.</p> <p><img src="http://farm3.static.flickr.com/2801/4028497878%5F70e799fece%5Fo.png" alt="alt text" /></p> <p>The <strong>problem</strong> here is that, it is extremely frustrating to select the textbox in the next row.</p> <p><strong>Is there a way to not to display that <code>12334</code> (highlighted in the screenshot) from ever being displayed through HTML markup or javascript?</strong></p> http://stackoverflow.com/questions/1592294/denserank-alternative-in-sql-server-2000set-based/1592427#1592427 2 Answer by Sung Meister for Dense_Rank() alternative in sql server 2000?(Set based) Sung Meister 2009-10-20T04:25:32Z 2009-10-20T04:25:32Z <p>Refer to this article, <a href="http://sqlservercode.blogspot.com/2006/03/ranking-in-sql-server-2000.html" rel="nofollow">Ranking In SQL Server 2000</a></p> <p>The author talks about how to implement <code>Dense_Rank()</code></p> http://stackoverflow.com/questions/1592149/cannot-select-grid-element-through-jquery 1 Cannot select grid element through jQuery Sung Meister 2009-10-20T02:26:57Z 2009-10-20T03:30:11Z <p>This is a follow-up question to <a href="http://stackoverflow.com/questions/1591081/asp-net-how-to-pass-container-value-as-javascript-argument">ASP.NET How to pass container value as javascript argument</a></p> <p>Darin Dimitrov has kindly provided <a href="http://stackoverflow.com/questions/1591081/asp-net-how-to-pass-container-value-as-javascript-argument/1591160#1591160">his answer</a> using <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <br /> But for some reason, I was not able to <em>select</em> the grid row I wanted to.</p> <p>Here is the jQuery used to select row.</p> <pre><code>$(function() { $('#_TrustGrid input[name^=trustDocIDTextBox]').each(function(index) { $(this).click(function() { alert('Hello world = ' + index); setGridInEditMode(index); }); }); }); </code></pre> <p>Here is the actual output HTML markup.</p> <pre><code>&lt;input id="_TrustGrid_ctl16_ctl05_ctl00_trustDocIDTextBox" type="text" value="198327493" name="_TrustGrid$ctl16$ctl05$ctl00$trustDocIDTextBox"/&gt; </code></pre> <p>I have just started using jQuery tonight and been going through <br />the official <a href="http://docs.jquery.com/Selectors" rel="nofollow">jQuery Selectors</a> documentation but have been unsuccessful.</p> <p><br /> <br /> <strong>Am I missing something here?</strong></p> http://stackoverflow.com/questions/1592149/cannot-select-grid-element-through-jquery/1592295#1592295 0 Answer by Sung Meister for Cannot select grid element through jQuery Sung Meister 2009-10-20T03:30:11Z 2009-10-20T03:30:11Z <p>I do not know why selecting through <code>#_TrustGrid</code> would not work. I was able to get around the problem by specifying <code>:input</code> as shown below.</p> <pre><code> $(function() { //$('#_TrustGrid input[id$=trustDocIDTextBox]').each(function(index) { $(':input[id$=trustDocIDTextBox]').each(function(index) { $(this).click(function() { alert('Hello world = ' + index); setGridInEditMode(index); }); }); }); </code></pre> http://stackoverflow.com/questions/1591081/asp-net-how-to-pass-container-value-as-javascript-argument 1 ASP.NET How to pass container value as javascript argument Sung Meister 2009-10-19T20:50:44Z 2009-10-19T21:22:42Z <p>I am using an <a href="http://www.obout.com/grid/" rel="nofollow">oBout Grid control</a> with a template on a textbox.</p> <p>I would like to pass an argument to a javascript, the current row index of a grid when a user clicks on it.</p> <p>But the result of </p> <pre><code> onClick='setGridInEditMode(&lt;%# Container.RecordIndex %&gt;);' /&gt; </code></pre> <p>comes out as</p> <pre><code> onClick="setGridInEditMode(&amp;lt;%# Container.RecordIndex %&gt;);" </code></pre> <p><strong>Is there a way to pass container value to javascript?</strong></p> <p>Here is the markup in question.</p> <pre><code>&lt;cc1:Grid ID="_TrustGrid" runat="server" FolderStyle="Styles/style_7" AllowAddingRecords="False" AllowSorting="false" AllowPageSizeSelection="False" AllowPaging="False" AllowMultiRecordEditing="true" AutoGenerateColumns="False" OnUpdatecommand="_TrustGrid_UpdateCommand" OnRebind="_TrustGrid_Rebind"&gt; &lt;Columns&gt; &lt;cc1:Column AllowEdit="true" AllowDelete="false" HeaderText="Edit" Width="130" runat="server" /&gt; &lt;cc1:Column DataField="TrustDocID" HeaderText="TrustDocID" Width="125" ReadOnly="false" AllowDelete="false" TemplateId="trustDocIDGridTemplate" /&gt; &lt;/Columns&gt; &lt;Templates&gt; &lt;cc1:GridTemplate ID="trustDocIDGridTemplate" ControlID="tb1" runat="server"&gt; &lt;Template&gt; &lt;asp:TextBox ID="trustDocIDTextBox" runat="server" Visible="true" Text='&lt;%# Container.Value %&gt;' onClick= 'setGridInEditMode(&lt;%# Container.RecordIndex %&gt;);' /&gt; &lt;/Template&gt; &lt;/cc1:GridTemplate&gt; &lt;/Templates&gt; &lt;/cc1:Grid&gt; </code></pre> http://stackoverflow.com/questions/1514955/how-to-get-around-udf-restriction-on-side-effecting-operators 0 How to get around UDF restriction on side-effecting operators? Sung Meister 2009-10-03T21:56:18Z 2009-10-19T14:34:18Z <p>Microsoft Books Online (BOL) on <a href="http://msdn.microsoft.com/en-us/library/cc645858.aspx" rel="nofollow">Using Change Data</a> explains a misleading error messages for <code>cdc.fn_cdc_get_all_changes_*</code> &amp; <code>cdc.fn_cdc_get_net_changes_*</code> when an invalid, out-of-range LSN (Log Sequence Number) has been passed to them.</p> <p><hr /></p> <pre><code>Msg 313, Level 16, State 3, Line 1 An insufficient number of arguments were supplied for the procedure or function `cdc.fn_cdc_get_all_changes_` ... Msg 313, Level 16, State 3, Line 1 An insufficient number of arguments were supplied for the procedure or function `cdc.fn_cdc_get_net_changes_` ... </code></pre> <p><hr /></p> <p>Their explanation on this misleading error message is as following</p> <blockquote> <p>Note: It is recognized that the message for Msg 313 is misleading and does not convey the actual cause of the failure. This awkward usage stems from the inability to raise an explicit error from within a TVF. Nevertheless, the value of returning a recognizable, if inaccurate, error was deemed preferable to simply returning an empty result. An empty result set would not be distinguishable from a valid query returning no changes.</p> </blockquote> <p>Here is a demonstration of what the note meant <a href="http://msdn.microsoft.com/en-us/library/ms178592.aspx" rel="nofollow"><code>RAISERROR</code></a> <img src="http://farm3.static.flickr.com/2448/3977619983%5F51d2625ef9%5Fo.png" alt="alt text" /></p> <p>There are times when I'd like to throw an error and you cannot use <a href="http://msdn.microsoft.com/en-us/library/ms175976.aspx" rel="nofollow"><code>TRY..CATCH</code></a> within UDF since it also has a side-effect like <code>RAISERROR</code>. <br /> <br /> Now the <strong>question</strong> is, how do <em>you</em> get around this problem? <br /> I am sure that you have faced with this restriction before. <br /> What alternative would you suggest? <br /></p> <p><hr /></p> <p><strong>[UPDATE]</strong> Let's suppose that you are forced to use <code>UDF</code>.</p> http://stackoverflow.com/questions/1549847/difference-between-2-indexes-with-columns-defined-in-reverse-order 7 Difference between 2 indexes with columns defined in reverse order Sung Meister 2009-10-11T04:25:31Z 2009-10-19T03:54:16Z <p>Are there any differences between following two indexes?</p> <ul> <li>IDX_IndexTables_1 </li> <li>IDX_IndexTables_2</li> </ul> <p>If there are any, what are the differences?</p> <pre><code>create table IndexTables ( id int identity(1, 1) primary key, val1 nvarchar(100), val2 nvarchar(100), ) create index IDX_IndexTables_1 on IndexTables (val1, val2) GO create index IDX_IndexTables_2 on IndexTables (val2, val1) GO </code></pre> http://stackoverflow.com/questions/1586600/invalid-compiler-generated-net-class-name 0 Invalid compiler-generated .NET Class Name Sung Meister 2009-10-19T01:35:28Z 2009-10-19T02:52:39Z <p>I was going through <a href="http://www.postsharp.org/about/getting-started" rel="nofollow">Getting Started</a> (with <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a>)</p> <p>And when I saw PostSharp injected (is this expression is right?) an aspect code into assembly,<br /> I saw this oddly named class marked with <code>CompilerGeneratedAttribute</code>. <img src="http://farm3.static.flickr.com/2434/4024643564%5F1c3528ca8c%5Fo.png" alt="alt text" /></p> <p>It is named <code>&lt;&gt;AspectsImplementationDetails_1</code>.<br /> As far as I know, class name cannot be started with <code>&lt;&gt;</code>. <br /> But how is it possible for PostSharp to create such class?<br /></p> <p>Is <code>&lt;&gt;</code> some kind of unknown/internal operator?</p> <p><hr /></p> <p><strong>[UPDATE]</strong> I did some testing and it looks like I was able to generate types with interesting names. <img src="http://farm3.static.flickr.com/2466/4024152931%5F1df08887c3%5Fo.png" alt="alt text" /></p> <p>Here is the sample code used</p> <pre><code>using System; using System.Reflection; using System.Reflection.Emit; namespace ReflectionDemo { class Program { public static void Main(string[] args) { var typeNames = new[] { "&lt;&gt;", "-", "+", "~", "!", "@", "#", "$", "%", "^", "&amp;", "*", "(", ")", "=" }; const string assemblyName = "Test"; foreach (var typeName in typeNames) { PrintTypeName( BuildType(assemblyName, typeName).CreateType()); } } private static void PrintTypeName(Type type) { Console.WriteLine("TypeName = '{0}'", type.FullName); } private static TypeBuilder BuildType( string assemblyName, string typeName) { var name = new AssemblyName(assemblyName); var assemblyBuilder = AppDomain.CurrentDomain.DefineDynamicAssembly( name, AssemblyBuilderAccess.Run); var moduleBuilder = assemblyBuilder.DefineDynamicModule(name.Name, false); return moduleBuilder.DefineType( typeName, TypeAttributes.Public); } } } </code></pre> http://stackoverflow.com/questions/1575676/how-to-find-out-sql-server-tables-read-write-statistics 0 How to find out SQL Server table's read/write statistics? Sung Meister 2009-10-15T23:31:25Z 2009-10-18T18:24:24Z <p>Is there a way to find a statistics on table read and write count on SQL Server <em>2005/2008</em>?</p> <p>I am specifically looking for <code>DMVs/DMFs</code> without using triggers or audits.</p> <p>The <strong><em>goal</em></strong> here is to find out a**ppropriate fill factor for indexes** - got an idea from this article (<a href="http://www.sqlserver.in/index.php/administration/39-sql-server-index/87-index-fill-factor.html" rel="nofollow">Fill Factor Defined</a>).</p> <p><hr /></p> <blockquote> <p><strong>[UPDATE]</strong> Follow up question on ServerFault <br /> <a href="http://serverfault.com/questions/75688/how-to-determine-read-write-intensive-table-from-dmv-dmf-statistics">How to determine Read/Write intensive table from DMV/DMF statistics</a></p> </blockquote> http://stackoverflow.com/questions/1573114/is-there-a-way-to-save-databound-listview-data-as-a-whole-instead-of-saving-per-r 0 Is there a way to save databound ListView data as a whole instead of saving per row? Sung Meister 2009-10-15T15:26:49Z 2009-10-15T15:26:49Z <p>I have a <code>ListView</code> that is databound thru DataSource of type typed dataset table.</p> <pre><code> private void LoadTrusts(int? clientId, int? imageId) { TrustDataSource = GetTrusts(clientId, imageId); _TrustListView.DataSource = TrustDataSource; _TrustListView.DataBind(); } </code></pre> <p>Where TrustDataSource is saved to <code>ViewState</code>.</p> <pre><code> protected TrustDataSet.TrustsDataTable TrustDataSource { get { if (_TrustDataSource == null) _TrustDataSource = ViewState["TrustDataSource"] as TrustDataSet.TrustsDataTable; return _TrustDataSource; } set { _TrustDataSource = value; ViewState["TrustDataSource"] = value; } } </code></pre> <p>After making changes on the bound (through <code>Bind(…)</code>) fields on ListView, <strong>Is there a way to get only <em>changed</em> subject of rows and save them as whole through data adapter?</strong></p> <p>For some reason, <code>_TrustListView.DataSource</code> is null after postback and this would not work.</p> <pre><code> private void SaveTrusts() { //new TrustWriter(GetConnectionString()).SaveTrusts(TrustDataSource); // At this point, "TrustDataSource" doesn't contain modified value on the ListView. var dataSource = _TrustListView.DataSource as TrustDataSet.TrustsDataTable; new TrustWriter(GetConnectionString()).SaveTrusts(dataSource); } </code></pre> <p>And since <code>TrustDataSource</code> does not contain <em>changed</em> values on the ListView, saving it would not work either.</p> <p>Markup of ListView</p> <pre><code>&lt;asp:ListView ID="_TrustListView" runat="server"&gt; &lt;LayoutTemplate&gt; &lt;table&gt; &lt;thead&gt; &lt;th&gt;Client_ID&lt;/th&gt; &lt;th&gt;Trust_ID&lt;/th&gt; &lt;th&gt;Trust Name&lt;/th&gt; &lt;/thead&gt; &lt;asp:PlaceHolder ID="itemPlaceHolder" runat="server" /&gt; &lt;/table&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;tr&gt; &lt;td&gt;&lt;asp:Label ID="clientIdLabel" runat="server" Text='&lt;%# Eval("Client_ID") %&gt;'&gt;&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt;&lt;asp:Label ID="trustIdLabel" runat="server" Text='&lt;%# Eval("Trust_ID") %&gt;'&gt;&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt;&lt;asp:Label ID="trustNameLabel" runat="server" Text='&lt;%# Bind("Trust_Name") %&gt;'&gt;&lt;/asp:Label&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; </code></pre> http://stackoverflow.com/questions/1567363/how-to-prevent-error-list-window-from-showing-up-within-visual-studio-asp-net-edi 0 How to prevent Error List Window from showing up within Visual Studio ASP.NET Editor? Sung Meister 2009-10-14T16:11:39Z 2009-10-14T16:21:36Z <p>Any errors or warnings within the markup pops up the window and it reminds me VB6 error message box, stealing the focus and concentration.</p> <p>Quite an eyesore.</p> <p><strong>Is there a way to prevent the <code>Error List</code> window from showing up while editing ASP.NET markups?</strong></p> http://stackoverflow.com/questions/1561382/asp-net-binding-integer-to-checkboxs-checked-field 1 ASP.NET Binding integer to CheckBox's Checked field Sung Meister 2009-10-13T16:27:48Z 2009-10-13T17:28:56Z <p>I have a following ListView item template, in which I am trying to bind integer value to <code>Checked</code> property of CheckBox.</p> <p><code>IsUploaded</code> value contains only 0 and 1...</p> <pre><code>&lt;asp:ListView ID="trustListView" runat="server"&gt; &lt;ItemTemplate&gt; &lt;asp:CheckBox ID="isUploadedCheckBox" runat="server" Checked='&lt;%# Bind("IsUploaded") %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; </code></pre> <p>But ASP.NET complains that </p> <blockquote> <p>Exception Details: System.InvalidCastException: Sepcified cast is not valid</p> </blockquote> <p>Even though following code using <code>DataBinder.Eval()</code> works, <br />I need to have a 2-way binding, thus need to use <code>Bind()</code>.</p> <pre><code>&lt;asp:CheckBox ID="isUploadedCheckBox2" runat="server" Checked='&lt;%# Convert.ToBoolean( DataBinder.Eval(Container.DataItem, "IsUploaded"))) %&gt;' /&gt; </code></pre> <p><strong>How can I convert 0's and 1's to boolean using <code>Bind()</code></strong>?</p> <p><hr /></p> <p><strong>[ANSWER]</strong> I have extended auto-generated type through partial class by adding a new property mentioned in the <a href="http://stackoverflow.com/questions/1561382/asp-net-binding-integer-to-checkboxs-checked-field/1561480#1561480">answer by Justin</a></p> http://stackoverflow.com/questions/1556354/how-can-i-write-a-t-sql-query-to-do-a-like-in/1557576#1557576 0 Answer by Sung Meister for How can I write a T-SQL query to do a "like in"? Sung Meister 2009-10-12T23:58:44Z 2009-10-12T23:58:44Z <p>If you use very rarely used <a href="http://msdn.microsoft.com/en-us/library/ms175156.aspx" rel="nofollow"><code>cross apply</code></a> you can do this with ease.<br /> (temp table declaration stolen code from <a href="http://stackoverflow.com/questions/1556354/how-can-i-write-a-t-sql-query-to-do-a-like-in/1556423#1556423">Stuart</a>)</p> <p>2 tables do not need to have any relationship as <a href="http://stackoverflow.com/questions/1556354/how-can-i-write-a-t-sql-query-to-do-a-like-in/1556379#1556379">Matthews' answer</a>.</p> <pre><code>DECLARE @nt TABLE (NAME VARCHAR(10)) DECLARE @ot TABLE (NAME VARCHAR(10)) INSERT INTO @nt VALUES('Stuart') INSERT INTO @nt VALUES('Ray') INSERT INTO @ot VALUES('St%') INSERT INTO @ot VALUES('Stu%') select distinct n.NAME from @nt n cross apply @ot o where n.NAME like o.name </code></pre> http://stackoverflow.com/questions/1551422/how-to-look-up-language-id-of-messages 0 How to look up Language ID of messages? Sung Meister 2009-10-11T18:44:16Z 2009-10-11T19:03:03Z <p>How do you look up a list of language IDs available within SQL Server?</p> <p>I am specifically looking if there are any views within <code>sys</code> schema.</p> <p><img src="http://farm3.static.flickr.com/2510/4001341199%5Fdfc0dd3f45%5Fo.png" alt="alt text" /></p> http://stackoverflow.com/questions/1769970/t-sql-how-to-get-these-results Comment by Sung Meister on T-Sql, How to get these results ? Sung Meister 2009-11-23T04:26:28Z 2009-11-23T04:26:28Z @uzay95: advice = post SQL server edition http://stackoverflow.com/questions/1778122/join-wont-do-it-and-sub-query-sucks-then-what Comment by Sung Meister on Join won't do it, and sub query sucks, then what? Sung Meister 2009-11-23T04:14:46Z 2009-11-23T04:14:46Z @7alwagy: What did you use to draw the table diagram? http://stackoverflow.com/questions/1766061/tsql-how-to-get-a-list-of-groups-that-a-user-belongs-to-in-active-diretory/1766233#1766233 Comment by Sung Meister on TSQL: How to get a list of groups that a user belongs to in Active Diretory Sung Meister 2009-11-19T20:45:10Z 2009-11-19T20:45:10Z It looks like I'd have to change the strategy by creating a say, CLR function/sproc. Thanks, marc_s. http://stackoverflow.com/questions/1766061/tsql-how-to-get-a-list-of-groups-that-a-user-belongs-to-in-active-diretory/1766233#1766233 Comment by Sung Meister on TSQL: How to get a list of groups that a user belongs to in Active Diretory Sung Meister 2009-11-19T20:23:08Z 2009-11-19T20:23:08Z The reason I was determined to find out about this was because, I was able to to do the exact opposite-Given the group name, retrieve all users that belong to the group. (Question updated for this purpose) http://stackoverflow.com/questions/1766061/tsql-how-to-get-a-list-of-groups-that-a-user-belongs-to-in-active-diretory/1766217#1766217 Comment by Sung Meister on TSQL: How to get a list of groups that a user belongs to in Active Diretory Sung Meister 2009-11-19T20:20:12Z 2009-11-19T20:20:12Z @Raj: Thank you for those links. I have gone thru many scripts I was able to do it programmatically, say in C# or powershell but I have failed to translate them into <code>LDAP</code> queries in TSQL. http://stackoverflow.com/questions/1763967/how-to-transfer-my-data-from-ms-access-db-to-a-new-sql-server-db Comment by Sung Meister on How to transfer my data from MS ACCESS DB to a new SQL SERVER DB? Sung Meister 2009-11-19T15:20:55Z 2009-11-19T15:20:55Z I believe that this question belongs on <code>ServerFault.com</code> http://stackoverflow.com/questions/1731093/tsql-cannot-perform-an-aggregate-function-avg-on-count-to-find-busiest-hours/1731148#1731148 Comment by Sung Meister on TSQL: Cannot perform an aggregate function AVG on COUNT(*) to find busiest hours of day Sung Meister 2009-11-17T05:06:08Z 2009-11-17T05:06:08Z @OMG Ponies: In CTE version, You might actually want to return <code>DATEPART(hh, x.visitdate)</code> from CTE as something like <code>DATEPART(hh, x.visitdate) as VisitHour</code> so that it is converted only once within CTE. http://stackoverflow.com/questions/1739632/customer-and-order-sql-statement/1740015#1740015 Comment by Sung Meister on Customer and Order Sql Statement Sung Meister 2009-11-17T04:59:38Z 2009-11-17T04:59:38Z @jero: I am sorry but those <code>pk&#95;</code> and <code>fk&#95;</code> prefixes gotta go. http://stackoverflow.com/questions/1668386/tsql-how-to-return-2-values-with-one-case-statement/1668424#1668424 Comment by Sung Meister on TSQL - How to return 2 values with one case statement? Sung Meister 2009-11-03T16:59:23Z 2009-11-03T16:59:23Z @Josheph. Thank you for the answer. This question was mainly to confirm whether there is actually a way to do so. But I was not able to find a way around it even after reading MSDN BOL. http://stackoverflow.com/questions/1631411/invalid-object-name-imageidstodelete/1631453#1631453 Comment by Sung Meister on Invalid object name '@ImageIDsToDelete' Sung Meister 2009-10-27T15:30:17Z 2009-10-27T15:30:17Z You <code>DECLARE</code> table variables, <b>not</b> <code>CREATE</code> them. http://stackoverflow.com/questions/1627600/how-do-you-implement-software-transactional-memory Comment by Sung Meister on How do you implement Software Transactional Memory? Sung Meister 2009-10-26T23:21:41Z 2009-10-26T23:21:41Z What's your platform? Windows? Linux? What's your framework? Java? Ruby? .NET? Would you be a bit more specific on your target platform? http://stackoverflow.com/questions/1618560/select-and-merge-rows-in-a-table-in-sql-stored-procedure Comment by Sung Meister on Select and merge rows in a table in SQL Stored procedure Sung Meister 2009-10-25T01:09:41Z 2009-10-25T01:09:41Z @Johannes: Does that really matter? if this benefits everyone? http://stackoverflow.com/questions/1618289/how-to-get-web-site-users-windows-login-name-from-stored-procedure-invoked-throu/1618327#1618327 Comment by Sung Meister on How to get web site user's Windows login name from stored procedure invoked through website Sung Meister 2009-10-24T15:53:48Z 2009-10-24T15:53:48Z I am trying to avoid having to create a new parameter like @UserName for <i>every</i> sprocs that saves information. http://stackoverflow.com/questions/1616047/how-to-pass-generic-type-parameter-to-lambda-expression/1616279#1616279 Comment by Sung Meister on How to pass Generic Type parameter to lambda expression? Sung Meister 2009-10-24T14:37:11Z 2009-10-24T14:37:11Z By the way, this is the first time I have ever used <code>ReferenceEquals</code>. Quite refreshing to use actual <code>Object</code> method. ;) http://stackoverflow.com/questions/1616047/how-to-pass-generic-type-parameter-to-lambda-expression/1616279#1616279 Comment by Sung Meister on How to pass Generic Type parameter to lambda expression? Sung Meister 2009-10-24T14:36:16Z 2009-10-24T14:36:16Z I have tried this and it works, which was the point of my question. But I have opted out with converting the lambda to a method.