User Sung Meister - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:59:31Zhttp://stackoverflow.com/feeds/user/4035http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/619320/what-do-you-do-when-you-run-into-a-programmers-block2What do you do when you run into a "Programmer's Block"? [closed]Sung Meister2009-03-06T15:50:55Z2009-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#17811170Answer by Sung Meister for T-Sql, How to get these results ?Sung Meister2009-11-23T04:38:07Z2009-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-diretory1TSQL: How to get a list of groups that a user belongs to in Active DiretorySung Meister2009-11-19T19:50:32Z2009-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-f4Learning New Language between Ruby & F#Sung Meister2008-09-16T02:27:27Z2009-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 & 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#17385622Answer by Sung Meister for How to refresh the definition of a T-SQL user-defined function after a dependent object is redefined?Sung Meister2009-11-15T19:40:50Z2009-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-explicit0Name XML result column of TSQL "for xml explicit"?Sung Meister2009-10-14T14:14:35Z2009-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-null0How to convert SQL Server XML type value (xsi:nil) of DateTime to nullSung Meister2009-07-29T19:27:43Z2009-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 =
'<DOD xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:nil="true" />'
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 & 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-schemas1What's the difference between "::" and "sys" schemas?Sung Meister2009-11-11T04:41:19Z2009-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-throu0How to get web site user's Windows login name from stored procedure invoked through websiteSung Meister2009-10-24T15:35:21Z2009-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-string0TSQL: Any benefits for explicitly specifying NVARCHAR in a string?Sung Meister2009-11-07T20:14:29Z2009-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-statement0TSQL - How to return 2 values with one case statement?Sung Meister2009-11-03T16:17:36Z2009-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-trigger2How to get procedure text before ALTER from DDL triggerSung Meister2009-10-05T18:17:43Z2009-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#16278930Answer by Sung Meister for How do you implement Software Transactional Memory?Sung Meister2009-10-26T23:23:33Z2009-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-expression0How to pass Generic Type parameter to lambda expression?Sung Meister2009-10-23T21:37:07Z2009-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<int?, object> getId = id => 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<Nullable<T>, object> getValue =
id => 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-name0How to set ASP.NET label text to current user nameSung Meister2009-10-22T21:07:35Z2009-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><asp:Label ID="userNameLabel" runat="server"
Text='<%= User.Identity.Name.Split(new char[]{'\\'})[1] %>' />
</code></pre>
<p>The main problem here is that, I do not know what <code><%= %></code> or <code><%# %></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#16112210Answer by Sung Meister for How to set ASP.NET label text to current user nameSung Meister2009-10-23T03:22:07Z2009-10-23T03:22:07Z<p>This works as well.</p>
<pre><code> <asp:Label ID="userNameLabel" runat="server">
<%= User.Identity.Name %>
</asp:Label>
</code></pre>
http://stackoverflow.com/questions/1592328/how-to-cancel-edit-disable-cached-input-of-type-text-value0How to cancel edit/disable cached input (of type text) value?Sung Meister2009-10-20T03:47:25Z2009-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#15924272Answer by Sung Meister for Dense_Rank() alternative in sql server 2000?(Set based)Sung Meister2009-10-20T04:25:32Z2009-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-jquery1Cannot select grid element through jQuerySung Meister2009-10-20T02:26:57Z2009-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><input
id="_TrustGrid_ctl16_ctl05_ctl00_trustDocIDTextBox"
type="text" value="198327493"
name="_TrustGrid$ctl16$ctl05$ctl00$trustDocIDTextBox"/>
</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#15922950Answer by Sung Meister for Cannot select grid element through jQuerySung Meister2009-10-20T03:30:11Z2009-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-argument1ASP.NET How to pass container value as javascript argumentSung Meister2009-10-19T20:50:44Z2009-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(<%# Container.RecordIndex %>);' />
</code></pre>
<p>comes out as</p>
<pre><code> onClick="setGridInEditMode(&lt;%# Container.RecordIndex %>);"
</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><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">
<Columns>
<cc1:Column AllowEdit="true" AllowDelete="false" HeaderText="Edit" Width="130" runat="server" />
<cc1:Column DataField="TrustDocID" HeaderText="TrustDocID" Width="125" ReadOnly="false" AllowDelete="false" TemplateId="trustDocIDGridTemplate" />
</Columns>
<Templates>
<cc1:GridTemplate ID="trustDocIDGridTemplate" ControlID="tb1" runat="server">
<Template>
<asp:TextBox ID="trustDocIDTextBox" runat="server"
Visible="true"
Text='<%# Container.Value %>'
onClick= 'setGridInEditMode(<%# Container.RecordIndex %>);' />
</Template>
</cc1:GridTemplate>
</Templates>
</cc1:Grid>
</code></pre>
http://stackoverflow.com/questions/1514955/how-to-get-around-udf-restriction-on-side-effecting-operators0How to get around UDF restriction on side-effecting operators?Sung Meister2009-10-03T21:56:18Z2009-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> & <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-order7Difference between 2 indexes with columns defined in reverse orderSung Meister2009-10-11T04:25:31Z2009-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-name0Invalid compiler-generated .NET Class NameSung Meister2009-10-19T01:35:28Z2009-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><>AspectsImplementationDetails_1</code>.<br />
As far as I know, class name cannot be started with <code><></code>. <br />
But how is it possible for PostSharp to create such class?<br /></p>
<p>Is <code><></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[]
{
"<>", "-", "+", "~", "!", "@", "#", "$", "%", "^", "&",
"*", "(", ")", "="
};
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-statistics0How to find out SQL Server table's read/write statistics?Sung Meister2009-10-15T23:31:25Z2009-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-r0Is there a way to save databound ListView data as a whole instead of saving per row?Sung Meister2009-10-15T15:26:49Z2009-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><asp:ListView ID="_TrustListView" runat="server">
<LayoutTemplate>
<table>
<thead>
<th>Client_ID</th>
<th>Trust_ID</th>
<th>Trust Name</th>
</thead>
<asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td><asp:Label ID="clientIdLabel" runat="server" Text='<%# Eval("Client_ID") %>'></asp:Label></td>
<td><asp:Label ID="trustIdLabel" runat="server" Text='<%# Eval("Trust_ID") %>'></asp:Label></td>
<td><asp:Label ID="trustNameLabel" runat="server" Text='<%# Bind("Trust_Name") %>'></asp:Label></td>
</tr>
</ItemTemplate>
</asp:ListView>
</code></pre>
http://stackoverflow.com/questions/1567363/how-to-prevent-error-list-window-from-showing-up-within-visual-studio-asp-net-edi0How to prevent Error List Window from showing up within Visual Studio ASP.NET Editor?Sung Meister2009-10-14T16:11:39Z2009-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-field1ASP.NET Binding integer to CheckBox's Checked fieldSung Meister2009-10-13T16:27:48Z2009-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><asp:ListView ID="trustListView" runat="server">
<ItemTemplate>
<asp:CheckBox ID="isUploadedCheckBox" runat="server"
Checked='<%# Bind("IsUploaded") %>' />
</ItemTemplate>
</asp:ListView>
</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><asp:CheckBox ID="isUploadedCheckBox2" runat="server"
Checked='<%# Convert.ToBoolean(
DataBinder.Eval(Container.DataItem, "IsUploaded"))) %>' />
</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#15575760Answer by Sung Meister for How can I write a T-SQL query to do a "like in"?Sung Meister2009-10-12T23:58:44Z2009-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-messages0How to look up Language ID of messages?Sung Meister2009-10-11T18:44:16Z2009-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-resultsComment by Sung Meister on T-Sql, How to get these results ?Sung Meister2009-11-23T04:26:28Z2009-11-23T04:26:28Z@uzay95: advice = post SQL server editionhttp://stackoverflow.com/questions/1778122/join-wont-do-it-and-sub-query-sucks-then-whatComment by Sung Meister on Join won't do it, and sub query sucks, then what?Sung Meister2009-11-23T04:14:46Z2009-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#1766233Comment by Sung Meister on TSQL: How to get a list of groups that a user belongs to in Active DiretorySung Meister2009-11-19T20:45:10Z2009-11-19T20:45:10ZIt 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#1766233Comment by Sung Meister on TSQL: How to get a list of groups that a user belongs to in Active DiretorySung Meister2009-11-19T20:23:08Z2009-11-19T20:23:08ZThe 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#1766217Comment by Sung Meister on TSQL: How to get a list of groups that a user belongs to in Active DiretorySung Meister2009-11-19T20:20:12Z2009-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-dbComment by Sung Meister on How to transfer my data from MS ACCESS DB to a new SQL SERVER DB?Sung Meister2009-11-19T15:20:55Z2009-11-19T15:20:55ZI 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#1731148Comment by Sung Meister on TSQL: Cannot perform an aggregate function AVG on COUNT(*) to find busiest hours of daySung Meister2009-11-17T05:06:08Z2009-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#1740015Comment by Sung Meister on Customer and Order Sql StatementSung Meister2009-11-17T04:59:38Z2009-11-17T04:59:38Z@jero: I am sorry but those <code>pk_</code> and <code>fk_</code> prefixes gotta go.http://stackoverflow.com/questions/1668386/tsql-how-to-return-2-values-with-one-case-statement/1668424#1668424Comment by Sung Meister on TSQL - How to return 2 values with one case statement?Sung Meister2009-11-03T16:59:23Z2009-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#1631453Comment by Sung Meister on Invalid object name '@ImageIDsToDelete'Sung Meister2009-10-27T15:30:17Z2009-10-27T15:30:17ZYou <code>DECLARE</code> table variables, <b>not</b> <code>CREATE</code> them.http://stackoverflow.com/questions/1627600/how-do-you-implement-software-transactional-memoryComment by Sung Meister on How do you implement Software Transactional Memory?Sung Meister2009-10-26T23:21:41Z2009-10-26T23:21:41ZWhat'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-procedureComment by Sung Meister on Select and merge rows in a table in SQL Stored procedureSung Meister2009-10-25T01:09:41Z2009-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#1618327Comment by Sung Meister on How to get web site user's Windows login name from stored procedure invoked through websiteSung Meister2009-10-24T15:53:48Z2009-10-24T15:53:48ZI 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#1616279Comment by Sung Meister on How to pass Generic Type parameter to lambda expression?Sung Meister2009-10-24T14:37:11Z2009-10-24T14:37:11ZBy 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#1616279Comment by Sung Meister on How to pass Generic Type parameter to lambda expression?Sung Meister2009-10-24T14:36:16Z2009-10-24T14:36:16ZI 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.