Click here to Skip to main content
15,893,487 members
Articles / Programming Languages / T-SQL

INSERT script from Microsoft SQL table data

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
6 Jul 2011CPOL 7.4K  
IF OBJECT_ID('sysGenerateInsert','P') IS NOT NULLBEGIN DROP PROC sysGenerateInsert PRINT 'sysGenerateInsert SP successfully dropped'END GO CREATE PROC sysGenerateInsert(@TblName varchar(128))ASBEGIN ----------------------------------------------------------------- --...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) NRG Energy, Inc.
United States United States
I have fifteen years' experience as an information technology generalist with several Fortune 500 companies. My expertise includes systems architecture, Web, database, and application development, application support, and customer relations. I am a graduate of Texas A&M University with a degree in management information systems.

Comments and Discussions