Application Role is a role at the database level. You can use Application Roles to access a database only with specific users from a …
Read More »MSSQL
SQL Server Metadata Functions
I will tell you below metadata functions in this article. APP_NAME COL_LENGTH DATABASEPROPERTYEX SERVERPROPERTY DB_ID DB_NAME OBJECT_ID OBJECT_NAME SCHEMA_ID SCHEMA_NAME STATS_DATE APP_NAME Function: This function …
Read More »How To Grant Permissions To Run Job in SQL Server
Before you begin this article, I suggest you read my article “How To Create a Login On SQL Server(Manage Logins)” for a detailed review of …
Read More »SQL Server Agent Fixed Database Roles
A login must have authority over some database roles in the msdb database in order to access SQL Server Agent. These roles in the msdb …
Read More »CHOOSE and IIF Functions in SQL Server
CHOOSE and IIF functions are logical functions. CHOOSE function returns the value at the specified index from the specified list. IIF function performs the …
Read More »What is Spatial Index in SQL Server
Spatial Index can only be created on Spatial columns. That is, the type of column must be geometry or geography. Let’s create a table …
Read More »SQRT and SQUARE Functions in SQL Server
SQRT function returns the square root of a float value and the return data type is float. SQUARE function returns the square of a …
Read More »What is Filtered Index in SQL Server
The Filtered Index is a filtered nonclustered index. For example, you have 100,000 records in a table. And some of your queries are only …
Read More »SIGN Function in SQL Server(TSQL)
The SIGN function determines whether a number is negative, 0, or positive. If the number is negative, it returns -1, If the number is …
Read More »Update Specific Row in EDIT TOP 200 Rows and Change the Query for EDIT TOP 200 Rows in SQL Server Management Studio
Most database experts, or TSQL developer knows EDIT TOP 200 Rows option. When you click EDIT TOP 200 Rows by right-clicking on the table, unlike …
Read More »