Global web icon
stackoverflow.com
https://stackoverflow.com/questions/46011694/does-…
Does Microsoft OLE DB Provider for SQL Server support TLS 1.2
EDIT#3 SQLOLEDB and the SQL Server ODBC driver (part of MDAC, shipped and serviced with Windows) has support for TLS 1.2 with October 20, 2020 build, version 17763.1554. This applies to Windows 10 and Windows Server 2019 or later.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/9207404/whats-…
sql server - What's best SQL datatype for storing JSON string? - Stack ...
Update: SQL Server 2016 will have native JSON support - a new JSON datatype (which is based on nvarchar) will be introduced, as well as a FOR JSON command to convert output from a query into JSON format
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/8928378/using-…
Using RegEx in SQL Server - Stack Overflow
As of April 2024, Azure SQL Database has now (finally) added support for "real" Regular-Expressions using the POSIX dialect (as opposed to the PCRE or .NET Regex dialects, oddly); it is currently in Preview, so enabling this feature requires you to opt-in via a sign-up form and pray to Satya that your request is approved).
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/79643378/upgra…
Upgraded SSMS from SSMS 20 to SSMS 21 - Stack Overflow
Our primary focus for SSMS 21 was to move to Visual Studio 2022, provide initial support for SQL Server 2025 Preview, and support the Copilot in SSMS Preview. Our team is actively working to bring these features back in an upcoming release. For now, if you rely on SSIS we recommend using SSMS 20, which you can install side-by-side with SSMS 21 GA.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2135418/equiva…
Equivalent of LIMIT and OFFSET for SQL Server? - Stack Overflow
In PostgreSQL there is the Limit and Offset keywords which will allow very easy pagination of result sets. What is the equivalent syntax for SQL Server?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/5039211/what-d…
sql server - What does 'COLLATE SQL_Latin1_General_CP1_CI_AS' do ...
SQL_Latin1_General_CP1_CI_AS breaks up into interesting parts: latin1 makes the server treat strings using charset latin 1, basically ascii CP1 stands for Code Page 1252 CI case insensitive comparisons so 'ABC' would equal 'abc' AS accent sensitive, so 'ü' does not equal 'u' P.S. For more detailed information be sure to read @solomon-rutzky's answer.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/7488149/sql-tr…
sql server - SQL Transaction Error: The current transaction cannot be ...
SQL Transaction Error: The current transaction cannot be committed and cannot support operations that write to the log file Asked 14 years, 2 months ago Modified 1 year, 8 months ago Viewed 259k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/74853199/what-…
What does "support" mean when it comes to SQL Server versions?
As a note, support for SQL Server 2019 doesn't end in 2025, Mainstream support does. Extended support ends on 2030-01-08.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/76167117/how-t…
How to store n-dimensional vector in Microsoft SQL Server?
I want to store a large n-dimensional vector (e.g. an embedding vector) in SQL Server as a piece of metadata associated with another row. In this example, it will be a 384-dimensional vector, for e...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/27309474/how-c…
sql server - How can I schedule a SQL job in Microsoft Azure SQL ...
I have one SQL Agent maintenance job which checks the index fragmentation within a database and rebuilds indexes if required. This is running well in my test server (Microsoft Sql Server 2012). But...