These roles are the default server level roles at the instance level. You can find the brief description about these roles below. sysadmin sysadmins …
Read More »MSSQL
CROSS APPLY and OUTER APPLY Operators in SQL Server(TSQL)
In SQL Server, we can join two tables with JOIN operators. You can read the “Join Types in SQL Server” article. With the CROSS …
Read More »How To Limit a User’s Resource Usage Using Resource Governor
Resource Governor announced with SQL Server 2008. We are able to limit resources of a session using Resource Governor. For example, a report user …
Read More »PIVOT and UNPIVOT Operators in SQL Server(TSQL)
The PIVOT , which is indispensable for Excel users, can be implemented with SQL Server 2005 via T-SQL. But I can’t say it’s as talented …
Read More »How To Move Logins to Contained Database
You can find detailed information about Contained Database in the article “What is Contained Database” We can create a new Contained Database and create …
Read More »Difference Between Login and User in SQL Server
I would like to write this article because it is a topic that some friends who are interested in SQL Server are usually curious …
Read More »Database-Based Memory Usage Rates in SQL Server
In some cases, we may need to determine the memory rates used by databases. Because some databases using extra memory may be degrading the performance …
Read More »OUTPUT Clause in SQL Server(TSQL)
OUTPUT Clause transfers the records affected by the currently executed INSERT, UPDATE, or DELETE operations to the specified table. So we can easily capture …
Read More »How To Create SQL User Without Login
We can create a user without login since SQL Server 2005 version. This feature was introduced instead of Application Role. You may want to read …
Read More »Ranking Functions(ROW_NUMBER, RANK, DENSE_RANK, NTILE) in SQL Server(TSQL)
These are the special sorting functions that we can use to sort the data that we select from the tables at run time. ROW_NUMBER …
Read More »