Vinod Kumar

Vinod has done his Bachelors in Mechanical Engineering from Anna University, Chennai (formerly known as Madras), India. He has been working on Microsoft Technologies for the past 4+ years. He is a Microsoft Most Valuable Professional (MVP) on SQL Server and a Microsoft Certified Professional. Going by the passion for MS Technologies, Certification exams has been one of his areas of interest and he has completed MCSA (2000, 2003), MCSE (2000), MCDBA, MCSD (VB, .NET), MCAD. More of his SQL Server expertise can be caught at the site he hosts www.ExtremeExperts.com. Vinod has initiated a SQL Server community in Bangalore, popularly known as the Silicon Valley of India. To capture more events on SQL Server, join the group at http://groups.msn.com/SQLBang which was formed as an initiative to bring PASS community in India.

SQLServerCentral Article

Introduction to SSIS in SQL Server 2005

DTS was one of the true innovations in SQL Server 7. SQL Server 2000 greatly enhanced this tool and SQL Server 2005 makes it truly a programming environment, well beyond the ETL functions of DTS in SQL Server 2000. New author Vinod Kumar gives a brief introduction to this new environment.

3.5 (18)

You rated this post out of 5. Change rating

2008-02-03 (first published: )

167,663 reads

Blogs

Why Microsoft Fabric Signals the Next Wave of Data Strategy

By

In today’s data-driven economy, organizations are no longer asking if they should invest in...

PostgreSQL Timeline: History and Evolution

By

PostgreSQL, often referred to as Postgres, is a powerful, open-source object-relational database system that...

Understanding Zonal Redundancy in Azure SQL MI

By

Do you know what happens when you enable zonal redundancy for your SQL managed...

Read the latest Blogs

Forums

How a Legacy Logic Choked SQL Server in a 30-Year-Old Factory

By Chandan Shukla

Comments posted to this topic are about the item How a Legacy Logic Choked...

Databases and Disasters

By Grant Fritchey

Comments posted to this topic are about the item Databases and Disasters

Automating SQL Server Access Review

By Deepam Ghosh

Comments posted to this topic are about the item Automating SQL Server Access Review

Visit the forum

Question of the Day

The Updated Columns List

I have this table in SQL Server 2022:

CREATE TABLE CustomerLarge
  (CustomerID               INT NOT NULL IDENTITY(1, 1) CONSTRAINT CustomerLargePK PRIMARY KEY CLUSTERED
 , CustomerName             VARCHAR(20)
 , CustomerContactFirstName VARCHAR(40)
 , CustomerContactLastName  VARCHAR(40)
 , Address                  VARCHAR(20)
 , Address2                 VARCHAR(20)
 , City                     VARCHAR(20)
 , CountryCode              CHAR(3)
 , Postal                   VARCHAR(20)
)
GO
If I check the columns_updated() function return in a trigger, what is the data returned?

See possible answers