Filtering by OFFSET-FETCH Options in Select query - SQL Server / TSQL...
Scenario :You are working as SQL Server developer with front end development team.The front end team needs to implement pagination. Â Confuse about Pagination? No problem. Think about viewing your bank...
View ArticleWhat is Logical OR Operator in SQL Server - SQL Server / TSQL Tutorial Part 119
Logical Operators are used to test some conditions. If the condition is true, the row will be selected for output.What is OR Logical Operator :Â OR logical operator is used when we want to return the...
View ArticleWhat is Logical AND Operator in SQL Server - SQL Server / TSQL Tutorial Part 120
Logical Operators are used to test some conditions. If the condition is true, the row will be selected for output.What is AND Logical Operator :Â Logical AND operator is used when we want to return the...
View ArticleWhat is NOT Logical Operator in SQL Server - SQL Server / TSQL Tutorial Part 121
Logical Operators are used to test some conditions. If the condition is true, the row will be selected for output.What is NOT Logical Operator :Â NOT logical operator is used when we want to return the...
View ArticleWhat is IN Logical Operator in SQL Server - SQL Server / TSQL Tutorial Part 122
What is IN Logical Operator :Â IN logical operator is used when we want to return the row if specified value matches with any value in the sub-query or a list.The IN Logical operator is going to be true...
View ArticleWhat is LIKE Logical Operator in SQL Server - SQL Server / TSQL Tutorial Part...
What is LIKE Logical Operator :Â LIKE logical operator is used when we want to return the row if operand matches a pattern. Like operator returns TRUE if the operand matches a pattern.Sometime we need...
View ArticleWhat is BETWEEN Logical Operator in SQL Server - SQL Server / TSQL Tutorial...
What is BETWEEN Logical Operator :Â BETWEEN returns TRUE if the operand is within range. BETWEEN logical operator is used when we want to return the row if operand is within range.Scenario:Â Let's say...
View ArticleHow to use EXISTS Logical Operator in SQL Server - SQL Server / TSQL Tutorial...
Exists returns TRUE if a subquery contains any rows. EXISTS is used when we want to test for the existence of rows specified by a subquery.Let's create dbo.Customer and dbo.Country Table and then use...
View ArticleHow to use ALL Logical Operator in SQL Server - SQL Server / TSQL Tutorial...
ALL Logical operator returns TRUE if all of a set of comparisons are TRUE. ALL compares a scalar value with a single column set of values.Let's understand ALL with examples.Scenario :Think about a...
View ArticleHow to use ANY / SOME Logical Operator in SQL Server - SQL Server / TSQL...
ANY Logical operator returns TRUE if any one of a set of comparisons are TRUE. ANY compares a scalar value with a single column set of values.Note :Â Â SOME and ANY are equivalent. We are going to use...
View ArticleHow to use Assignment Operator in SQL Server - SQL Server / TSQL Tutorial...
The equal ( = ) sign is used in TSQL as assignment operator. You will be using assignment operator many time when you write your TSQL Code.1) Assign Value to VariableAssignment Operator can be used to...
View ArticleWhat Arithmetic Operators are available in SQL Server - SQL Server / TSQL...
Arithmetic Operators are used to perform mathematical operations such as Addition, Subtraction, Multiplication and Division etc.1 )Â + will be used for Addition2) - will be used for Subtraction3) * will...
View ArticleProject / Work Support
Looking for some support who can help with difficult task/s and be there when you need them, TechBrothers have got your back!ORHave small or big project that needs to be finished by professionals on...
View ArticleHow to delete all files except current date files in SSIS Package - SSIS...
Scenario:You are working as ETL Developer or an SSIS developer, you need to write an SSIS Package that should be able to delete all the old files from a folder and just leave the current day files.How...
View ArticleHow to see Created Date for Files and Folders in Windows Explorer
When we often Windows Explorer we see different properties and one of them we see for file and folder is Modified Date.Sometime we need to know when the file or folder was created and we would like to...
View ArticleHow to Run Stored Procedure Against Multiple Databases in SQL Server - SQL...
Scenario:You are working as SQL Server developer. The company you are working create a new database for each of the client with same objects such as tables/Stored Procedures. You have one stored...
View ArticleHow to download file from SharePoint by using SSIS Package - SSIS Tutorial /...
Scenario:You are working as SSIS Developer and you need to download the file from SharePoint on daily basis, if the file exists in the folder you want to overwrite with new file. The file name that you...
View ArticleHow to download File from SharePoint and Add Datetime to it in SSIS Package...
Scenario:You are working as ETL/ SSIS Developer. You need to write an SSIS Package that should download the file from SharePoint site. Every time you run the SSIS Package it should download the file...
View ArticleHow to create SSRS Report Dynamically with Dynamic Schema, Dynamic Table Name...
Scenario:Few months back, I created a post/video "How to Create SSRS Report When Number of Columns Can change Anytime in Source Object". In this post we are going to create another dynamic reports in...
View ArticleHow to get Maximum and Minimum Length for each Column Values for all the...
Scenario:Let's say you are working as SQL Server developer / Architect and you need to design tables from existing tables. While creating existing tables nobody thought about correct data types and...
View Article