SQL SERVER – Basic Explanation of SET LOCK_TIMEOUT – How to Not Wait on Locked Query
SQLAuthority News – Developing Multi-tenant Applications for the Cloud, 3rd Edition – Book Download
Cloud is changing the way how IT world is evolving. Honestly, just like every product and service, there are always the best practices to follow for optimal outcome. Let us learn about Developing Multi-tenant Applications for the Cloud.
SQL SERVER – Weekly Series – Memory Lane – #013
SQL SERVER – Basic Explanation of Query Hint NOWAIT – How to Not Wait on Locked Query
SQL SERVER – How to Use Instead of Trigger
A trigger is an exceptional sort of stored procedure which functions when we try to amend the data in a table like inserting, deleting or updating data. It is a database object, executed automatically and is bound to a table. Fundamentally, triggers are classified into two types mainly-
SQL SERVER – TRIM Function to Remove Leading and Trailing Spaces of String – SQL in Sixty Seconds #040 – Video
Trim is one of the most frequently used operation over String data types. A developer often come across a scenario where they have the string with leading and trailing spaces around string. If your business logic suggests that the logs around the spaces are not useful they should be trimmed. However, in SQL Server there is no TRIM function. When a TRIM function is used it will throw an error.