SQL Compact select top 1 - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T21:01:46Zhttp://stackoverflow.com/feeds/question/138419http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/138419/sql-compact-select-top-10SQL Compact select top 1Tomas Tintera2008-09-26T09:13:04Z2008-10-21T11:55:33Z
<p>While poring an app from SQL 2005 to SQL Server Compact, I need to port command</p>
<pre><code>SELECT TOP 1 Id FROM tblJob WHERE Holder_Id IS NULL
</code></pre>
<p>But SQL Server Compact does not know the TOP keyword. Any idea how to port such command?
Than you for your answers in advance!</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/138435#1384350Answer by bernhardrusch for SQL Compact select top 1bernhardrusch2008-09-26T09:18:13Z2008-09-26T09:18:13Z<p>a quick googling showed this link:
<a href="http://www.windows-tech.info/15/5fd9a279cc8f339c.php" rel="nofollow">http://www.windows-tech.info/15/5fd9a279cc8f339c.php</a></p>
<p>Maybe this will help you.</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/138436#1384360Answer by Jesper Blad Jensen aka. Deldy for SQL Compact select top 1Jesper Blad Jensen aka. Deldy2008-09-26T09:18:43Z2008-09-26T09:18:43Z<p>Looks like it can't be done in compact. You have to read all the jobs, or make a SqlReader, and just read the first one.</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/138439#1384392Answer by Robinb for SQL Compact select top 1Robinb2008-09-26T09:20:02Z2008-09-26T09:20:02Z<p>SELECT TOP(1) Id FROM tblJob WHERE Holder_Id IS NULL</p>
<p>Need the brackets as far as I know.</p>
<p>reference: <a href="http://technet.microsoft.com/en-us/library/bb686896.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/bb686896.aspx</a></p>
<p>addition: likewise, only for version 3.5 onwards</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/140835#1408351Answer by Mike Dimmick for SQL Compact select top 1Mike Dimmick2008-09-26T17:33:37Z2008-09-26T17:33:37Z<p>This is slightly orthogonal to your question.</p>
<p>SQL Server Compact Edition actually doesn't perform very well with SQL queries. You get much better performance by opening tables directly. In .NET, you do this by setting the command object's <code>CommandText</code> property to the table name, and the <code>CommandType</code> property to <code>CommandType.TableDirect</code>.</p>
<p>If you want to filter the results, you will need an index on the table on the column(s) you want to filter by. Specify the index to use by setting the <code>IndexName</code> property and use <code>SetRange</code> to set the filter.</p>
<p>You can then read as many or as few records as you like.</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/216271#2162710Answer by Tomas Tintera for SQL Compact select top 1Tomas Tintera2008-10-19T10:55:14Z2008-10-19T10:55:14Z<p>@Mike Dimmick Thank you. Would be interesting to see a test. Our app is using NHibernate. We use SQL Compact only for non-intall demo CD, so perfomance is not an issue. At least until is not order of magnitude different from Express edition. </p>
<p>The command in query is from initial script to fill up demo data into our DB.</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/218515#2185150Answer by Tomas Tintera for SQL Compact select top 1Tomas Tintera2008-10-20T13:55:50Z2008-10-20T13:55:50Z<p>I have installed Microsoft SQL Server 3.5 SP1 English and when running </p>
<pre><code>SELECT * FROM tblJob
go
SELECT TOP(1) * FROM tblJob
</code></pre>
<p>Running it in Mangement Studio the first query runs ok, second failes with</p>
<pre><code>(1 row(s) affected)
Major Error 0x80040E14, Minor Error 25501
SELECT TOP(1) * FROM tblJob There was an error parsing the query. [ Token line number = 1,Token line offset = 8,Token in error = TOP ]
</code></pre>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/218981#2189810Answer by Tomas Tintera for SQL Compact select top 1Tomas Tintera2008-10-20T16:07:44Z2008-10-21T11:55:33Z<p>Well found a reason. Management studio carries and uses it's own version od SQL Server Compact. See more in <a href="http://en.wikipedia.org/wiki/SQL_Server_Compact" rel="nofollow">http://en.wikipedia.org/wiki/SQL_Server_Compact</a>.</p>
<blockquote>
<p>SQL Server Management Studio 2005 can
read and modify CE 3.0 and 3.1
database files (with the latest
service pack), but the SQL Server
Management Studio 2008 from the
"Katmai" 2008 CTP release (or later)
is required to read version 3.5 files.</p>
<p>The RTM of SQL Server Management
Studio 2008 and Microsoft Visual
Studio Express 2008 SP1 can create,
modify and query CE 3.5 SP1 database
files.</p>
</blockquote>