hot questions tagged sql-query - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T14:59:24Zhttp://stackoverflow.com/feeds/tag?tagnames=sql-query&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860557/nhibernate-sql-query-results-different-from-direct-query-results0nhibernate sql-query results different from direct query resultsYonatan Karni2009-12-07T15:07:31Z2009-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><?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
namespace="myNamespace" assembly="myAssembly">
<class name="HistoryEvent">
<id name="id" type="long" access="field">
<column name="Id"/>
<generator class="native"/>
</id>
<property name="type" column="Type" type="short" access="field"/>
<property name="time" column="Time" type="datetime" access="field"/>
<property name="description" column="Description" type="string" access="field"/>
</class>
<sql-query name='GetHistory'>
<return class='HistoryEvent, myAssembly' alias='historyEvent'/>
<![CDATA[SELECT * FROM GetHistory(:id)]]>
</sql-query>
</hibernate-mapping>
</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-query3Deleting duplicate rows from table - SQL querysantanu2009-11-17T12:14:39Z2009-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-join2SQL Sub-query or INNER-JOIN?Hemant Tank2009-11-24T08:32:17Z2009-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>