0
votes
7answers
2k views
SQL Compact select top 1
While poring an app from SQL 2005 to SQL Server Compact, I need to port command
SELECT TOP 1 Id FROM tblJob WHERE Holder_Id IS NULL
But SQL Server Compact does not …
0
votes
SQL Compact select top 1
@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 …
0
votes
SQL Compact select top 1
I have installed Microsoft SQL Server 3.5 SP1 English and when running
SELECT * FROM tblJob
go
SELECT TOP(1) * FROM tblJob
Running it in Mangement Studio the firs …
0
votes
SQL Compact select top 1
Well found a reason. Management studio carries and uses it's own version od SQL Server Compact. See more in http://en.wikipe …
