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,647 reads

Blogs

Choosing to not drive the Tesla

By

I started a short thread on Twitter/X and Bluesky recently after leaving the Tesla...

Advice I Like: Transactions and Relationships

By

Life gets better as you replace transactions with relationships. – from Excellent Advice for...

Free PostgreSQL Performance Monitoring with pgNow

By

I’ve been putting together a new PostgreSQL session called “Performance Monitoring for the Absolute...

Read the latest Blogs

Forums

Understanding Bit Manipulation Functions: BIT_COUNT, GET_BIT, and SET_BIT in SQL Server 2022

By Noman072

Comments posted to this topic are about the item Understanding Bit Manipulation Functions: BIT_COUNT,...

Mixed Backups

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Mixed Backups

Or condition in where clause works differently in MS SQL comparing with Sybase

By james_toronto

Hello, I ran below statements in MS SQL, and got error, but fine in...

Visit the forum

Question of the Day

Mixed Backups

I have a complex database with a few filegroups and files. Can I run a backup command like this? (assume file/filegroup names are valid).

BACKUP DATABASE [complex]
    FILE = N'thirdone'
 ,  FILE = N'thirdtwo'
 ,  FILEGROUP = N'second' 
 TO  DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL16.SQL2022\MSSQL\Backup\complex.bak' 
 WITH NOFORMAT, NOINIT,  NAME = N'complex-Full Database Backup', SKIP, NOREWIND, NOUNLOAD,  STATS = 10
GO

See possible answers