• Home
  • Articles Index
  • Question of the Week
  • About Me
  • Readers Feedback
  • My Mobile Apps
  • Contact
  • Disclaimer & Copyright

Technology with Vivek Johari

Learn database in a simple and easy way.

  • Home
  • Latest Articles
  • SQL Tutorial
    • SQL Joins
    • SQL Stored Procedure
    • SQL Constraints- Primary Keys, Foreign Keys
    • SQL Triggers
    • SQL Views
    • SQL Subquery, Nested Subquery and Correlated Subquery
    • SQL Cursor
    • SQL Functions
    • SQL Isolation levels
    • SQL Pivot and Unpivot table
    • SQL Indexes
    • SQL Merge Command
    • SQL Ranking Functions
    • SQL CTE Command
    • SQL Replication
    • SQL Fragmentation
    • Exception handling in SQL
    • SQL Best practices
  • Azure Tutorial
    • Understanding Azure SQL Database
    • Azure Pricing Models and Service Tiers
    • Creating an Azure SQL Database
    • How to connect with Azure SQL Database
    • Migrating SQL Database to Azure SQL Database using SSMS Export/Import
    • Migrating SQL Database to Azure SQL Database using SSMS Deploy
  • Interview Questions
    • Interview Questions on sql server -Part-1
    • Interview Questions On Sql Server -Part 2
    • Interview Questions on Sql Server -Part 3
  • DBA
  • SQL Tips

Month: April 2012

Merge Command In Sql Server

April 17, 2012February 1, 2019 vivekjohari4 Comments on Merge Command In Sql Server

Merge Command:- Merge command is a new feature introduced in the SQL Server 2008. It can perform Update, Insert and delete operations at a single statement which means all the data is processed and read only once instead of three times(In case of Insertion, deletion and update statements.) It has a target table and Source […]

Continue Reading

Adding , Deleting and Updating a Column in a table

April 15, 2012April 27, 2018 vivekjohari29 Comments on Adding , Deleting and Updating a Column in a table

Many times we need to alter the table definition by adding , deleting or updating a column in the table. In this article, I am trying to explain the following :- 1. How to add a column 2. How to update a column 3. How to drop a column Suppose we have a table say […]

Continue Reading

Derived Table In Sql Server

April 15, 2012February 1, 2019 vivekjohari31 Comments on Derived Table In Sql Server

Derived tables:-  Derived tables are the tables which are created on the fly with the help of the Select statement. It is different from the temporary table in the way that  in case of temporary table, first we have to create a temporary table,  insert the data into the table, select the data from the temporary table and […]

Continue Reading

Pivot and Unpivot table in SQL SERVER

April 14, 2012February 1, 2019 vivekjohari25 Comments on Pivot and Unpivot table in SQL SERVER

Pivot Table:- Pivot tables are used to summarize and display the data, specially in case of report data by means of aggregating the values. Pivot table can be used if we want to display the unique values of the column of a table as the columns of another table. It turns the unique values of a specified […]

Continue Reading

Follow Us

Recent Post

  • SQL Joins Interview Questions

    SQL Joins Tricky Interview Questions

    April 17, 2019November 12, 2020 vivekjohari
  • Point In Time Restore for Azure SQL Database

    January 8, 2019January 9, 2019 vivekjohari
  • Azure – Creating an Azure SQL Database

    December 27, 2018January 28, 2019 vivekjohari
  • Merry Christmas

    December 24, 2018December 24, 2018 vivekjohari
  • SQL Triggers – An Introduction

    December 8, 2018January 31, 2019 vivekjohari

Categories

  • Azure (8)
    • Azure Database Restoration (1)
    • Migration to Azure SQL Database (3)
  • DBA (17)
  • Festive Greetings (1)
  • Interview Questions (29)
  • Miscellaneous (10)
  • SQL Server (99)
    • Imp SQL Difference (6)
    • Most Imp SQL Concepts (13)
    • SQL ACID Rule (1)
    • SQL Advanced (17)
    • SQL Basic (10)
    • SQL Basic Concepts (17)
    • SQL Best Practices (2)
    • SQL CTE (2)
    • SQL Cursor (1)
    • SQL Data Types (1)
    • SQL Database Backup (1)
    • SQL Database Mirroring (1)
    • SQL Database Restoration (3)
    • SQL DDL, DML, DCL, TCL (1)
    • SQL Derived Table (1)
    • SQL Functions (17)
    • SQL Group By Having (1)
    • SQL Indexes (7)
    • SQL Isolation Level (1)
    • SQL Joins (1)
    • SQL Log Shipping (1)
    • SQL Merge Command (1)
    • SQL Normalization (5)
    • SQL Output Clause (1)
    • SQL Pivot and Unpivot table (1)
    • SQL Primary Key Constraint (2)
    • SQL Queries Sub-queries (1)
    • SQL Ranking Function (1)
    • SQL Replication (1)
    • SQL Server Exception handling (1)
    • SQL Stored Procedure (4)
    • SQL Temporary Tables (3)
    • SQL Triggers (3)
    • SQL Union Function (1)
    • SQL View (1)
    • SQL While loop (1)
  • SQL Tips (5)




Archives

  • April 2019 (1)
  • January 2019 (1)
  • December 2018 (3)
  • November 2018 (6)
  • October 2018 (1)
  • April 2018 (1)
  • March 2018 (4)
  • August 2017 (1)
  • July 2017 (1)
  • September 2016 (1)
  • December 2015 (1)
  • August 2015 (3)
  • July 2015 (3)
  • February 2015 (1)
  • January 2015 (16)
  • November 2014 (1)
  • October 2014 (2)
  • August 2014 (22)
  • April 2014 (2)
  • March 2014 (1)
  • January 2014 (8)
  • December 2013 (6)
  • November 2013 (2)
  • December 2012 (5)
  • November 2012 (1)
  • August 2012 (2)
  • April 2012 (4)
  • January 2012 (7)
  • August 2011 (1)
  • July 2011 (1)
  • May 2011 (2)
  • September 2010 (2)
  • January 2010 (14)
  • December 2009 (3)
  • November 2009 (2)
  • October 2009 (3)
  • September 2009 (1)
  • August 2009 (1)
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

Featured Posts

  • SQL Joins Tricky Interview Questions 
  • Azure – Creating an Azure SQL Database 
  • Migrating SQL Database To Azure SQL Instance using Microsoft Database Migration Assistant (DMA) Tool 
  • How to migrate SQL Database to Azure SQL Database using SSMS deploy 
  • How to connect with Azure SQL Database 

Top Posts

  • SQL Joins Tricky Interview Questions
  • SQL Script: - How to find the last access date of a database
  • Advantages & Disadvantages of SQL Trigger
  • How to migrate SQL Database to Azure SQL Database using SSMS Export/Import
  • Interview Questions On Sql Server -Part 2

Recent Posts

  • SQL Joins Tricky Interview Questions
  • Point In Time Restore for Azure SQL Database
  • Azure – Creating an Azure SQL Database
  • Merry Christmas
  • SQL Triggers – An Introduction

Follow US

  • RSS feed
  • LinkedIn
  • Google+
  • Twitter
  • Facebook
© Copyright Technology with Vivek Johari 2018. | Theme: News Portal by Mystery Themes.
  • Articles Index
  • About Me
  • Contact
  • My Mobile Apps
  • Disclaimer & Copyright
  • Readers Feedback