SQL Server – How to Configure Collation for the Server, Database, Column, and...
Hey Folks, You would have seen in my previous posts, that how the Collation Settings is configured during the Installation of SQL Server. You can also refer to that article by the link; So once the...
View ArticleSQL Server Statistics Only Database
Hi Geeks, First of all I would like to thank Amit Sir and SQLServerGeeks.com for giving me this opportunity to blog. This is my 1st blog on SQL Server Statistics Only Database, so I am pretty much...
View ArticleRestore database SQL Server command with replace
Restore database SQL Server command with replace option is used when we need overwrite an existing database from a backup. The T-SQL command for same is shown below.RESTORE DATABASE...
View ArticleSQL Server change collation of database
A SQL Server collation setting governs the code page to store non Unicode data in SQL Server and the rules to sort and compare non Unicode characters. The SQL Server installation automatically selects...
View ArticleHow to change database compatibility level in SQL Server
Many a times one may need to change compatibility level of a database. In this blog we’ll see how to change database compatibility level or mode of a SQL Server database. To get the current database...
View ArticleList all databases in SQL Server
Here are few ways to list all databases in SQL ServerSELECT database_id, name from sys.databases GO SELECT dbid, name from sysdatabases GO sp_helpdb GO sp_databases GO sp_MSforeachDB ' PRINT ''?'' '...
View ArticleCase sensitive search in SQL Server
Yes, a SQL Server database can be case sensitive. Case sensitive here means that SQL Server will return different result set for CASE, Case, CaSe etc. and it will treat the mentioned strings as 3...
View Article