hot questions tagged sql-query - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:59:24Z http://stackoverflow.com/feeds/tag?tagnames=sql-query&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860557/nhibernate-sql-query-results-different-from-direct-query-results 0 nhibernate sql-query results different from direct query results Yonatan Karni 2009-12-07T15:07:31Z 2009-12-07T17:10:13Z <p><strong>UPDATE: I've answered my question below, take a peek and let me know if you have a better way of doing this</strong></p> <p><hr></p> <p><strong>executive summary:</strong><br /> when calling my sqlserver function from SQL Management Studio I get a list with results {1, 2, 3}. when calling the method from a code using NHibernate I get this list {1, 1, 1}. ('1' is an entire result row, not the scalar '1') I've also tried it with different data sets and got the same behavior. <br/><br /> <strong>the long story:</strong><br/> I have an sql function in sql server, called GetHistory(itemId). it returns a table with the results. when I query from SQL Management Studio I get a list of results. I query by calling the function like so:</p> <p><code>select * from GetHistory(10001)</code></p> <p>on my given DB this results in 3 rows. each row has a Time, Type and Description.<br/> in NHibernate, I've created a new entity especially for this, as there's no such organic table/entity. so I have a mapping:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="myNamespace" assembly="myAssembly"&gt; &lt;class name="HistoryEvent"&gt; &lt;id name="id" type="long" access="field"&gt; &lt;column name="Id"/&gt; &lt;generator class="native"/&gt; &lt;/id&gt; &lt;property name="type" column="Type" type="short" access="field"/&gt; &lt;property name="time" column="Time" type="datetime" access="field"/&gt; &lt;property name="description" column="Description" type="string" access="field"/&gt; &lt;/class&gt; &lt;sql-query name='GetHistory'&gt; &lt;return class='HistoryEvent, myAssembly' alias='historyEvent'/&gt; &lt;![CDATA[SELECT * FROM GetHistory(:id)]]&gt; &lt;/sql-query&gt; &lt;/hibernate-mapping&gt; </code></pre> <p>the business object looks like this:</p> <pre><code> public class HistoryEvent { private long id; private short type; private string description; private DateTime time; ... here be properties with public getter etc... } </code></pre> <p>and finally, I call this function from my code like so:</p> <pre><code>IList result = s.GetNamedQuery("GetHistory").SetInt64("id", id).List(); </code></pre> <p>when inspecting this list with the debugger I get 3 entities which are the same row 3 times. I've also tried using the query directly from NHibernate (using sql-query) instead of going through the DB function, but got the same results. <br /> my intuition is that something is wrong with my mapping, or something is wrong with NHibernate :) <br/><strong>HELP!</strong></p> http://stackoverflow.com/questions/1748459/deleting-duplicate-rows-from-table-sql-query 3 Deleting duplicate rows from table - SQL query santanu 2009-11-17T12:14:39Z 2009-11-19T06:28:46Z <p>I need to delete duplicate rows from the table, like I have 3 duplicate rows in the table, my query will delete 2 rows from 3 duplicated rows.</p> <p>How can I get this? Please help me.</p> <p>Thanks</p> http://stackoverflow.com/questions/1788678/sql-sub-query-or-inner-join 2 SQL Sub-query or INNER-JOIN? Hemant Tank 2009-11-24T08:32:17Z 2009-11-24T09:07:51Z <p>I've the two following queries:</p> <pre><code>declare @UserId as int set @UserId = 1 -- Query #1: Sub-query SELECT u.[Id] , u.[Name] , u.[OrgId] AS Organization, (SELECT o.[Name] FROM Org o WHERE o.Id = u.OrgId) As OrganizationName, [UserRoleId] AS UserRole, [UserCode] AS UserCode, [EmailAddress] As EmailAddress, (SELECT SearchExpression FROM SearchCriteria WHERE UserId = @UserId AND IsDefault=1 ) AS SearchCriteria, (SELECT PageSize FROM UserPreferences WHERE UserId = @UserId) AS UserPreferencePageSize, (SELECT DrilldownPageSize FROM UserPreferences WHERE UserId = @UserId) AS UserPreferenceDrilldownPageSize FROM [User] as u WHERE u.Id = @UserId -- Query #2: LEFT OUTER JOIN-query SELECT u.[Id] , u.[Name] , u.[OrgId] AS Organization, (SELECT o.[Name] FROM Org o WHERE o.Id = u.OrgId) As OrganizationName, [UserRoleId] AS UserRole, [UserCode] AS UserCode, [EmailAddress] As EmailAddress, sc.SearchExpression As SearchExpression, up.PageSize As PageSize, up.DrilldownPageSize As DrilldownPageSize FROM [User] as u LEFT OUTER JOIN [UserPreferences] as up ON u.id = up.UserId LEFT OUTER JOIN [SearchCriteria] as sc ON u.id = sc.UserId WHERE ISNULL(sc.IsDefault,1)=1 AND u.Id = @UserId </code></pre> <p><strong>Query execution plan statistics:</strong> (Query cost relative to batch)</p> <ul> <li>Query#1 (Sub-Query) : 56%</li> <li>Query#2 (JOIN) : 44%</li> </ul> <p>I thot the sub-query would be optimal because the sub-query will be executed after the WHERE filter is applied. The statistics say the Query#2 - JOIN approach is better.</p> <p>Pls suggest. Also as a moderate SQL-Server user how can I derive which query is better (anything other then execution-plan, if it is more helpful)</p> <p>Thank you.</p>