MSSQL support: minimum required version?
See original GitHub issueWhat is the minimum version of MSSQL server that Knex now supports? I’m asking, because when I do this:
return knex('table')
.select('id')
.orderBy('id', 'asc')
.limit(20)
.offset(10);
I get this:
Fatal error: select [id] from [table] order by [id] ASC offset @p0 rows fetch next @p1 rows only - Invalid usage of the option next in the FETCH statement.
This is on MSSQL server 2008.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:6
- Comments:17 (3 by maintainers)
Top Results From Across the Web
SQL Server 2019: Hardware & software requirements
Hardware requirements ; Memory *, Minimum: Express Editions: 512 MB All other editions: 1 GB Recommended: Express Editions: 1 GB All other ...
Read more >MSSQL support: minimum required version? #1527 - GitHub
What is the minimum version of MSSQL server that Knex now supports? I'm asking, because when I do this: return knex('table') .select('id') ....
Read more >What are the requirements for SQL Server 2016? - ServerMania
The absolute minimum amount of RAM is 512MB for the Express version of SQL Server 2016. To adequately meet the needs of all...
Read more >Installing SQL Server 2016 - SQLShack
Operating System Systems that are currently supported for SQL Server 2016 installation are: Windows 8 and 8.1 (All 64 bit editions) Windows 10 ......
Read more >Is your SQL Server version still supported? - Monin
The same goes up for Microsoft SQL Server. From the initial release, each version is supported for a minimum of 10 years (according...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Knex should definitely support older versions of MSSQL, or professionals will never be able to use Knex. In big companies, still having SQL 2008 servers is not rare - even today!
I have this bug using SQL server 2017 for linux on Docker.