MORE,TOP,CODE,CAN,FOUND,UPDATED,with,features
Quick Search for:  in language:    
MORE,TOP,CODE,CAN,FOUND,UPDATED,with,features
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
SQL Stats

 Code: 29,142 lines
 Jobs: 442 postings

 
Sponsored by:

 

You are in:

 
Login



Latest Code Ticker for SQL.
Access 2000 Tabular Form - Building a Query Command Function
By David Nishimoto on 8/23


sp_RestoreDatab ase
By Shane Lively on 8/23


fnCharPad
By Shane Lively on 8/23


Link_SQLServer_ Oracle
By Daniel G. Menendez on 8/20


SQL Strip Alpha/Numeric
By Jay Gardner on 8/19


how to apply a filter to an Access 2000 form by using a combo box as a filter parameter
By David Nishimoto on 8/16


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

UPDATED: Procedure to script your data (it generates INSERT statements for your existing data)

Print
Email
 
winzip icon
Submitted on: 2/20/2001 2:38:38 AM
By: Narayana Vyas Kondreddi  
Level: Advanced
User Rating: By 7 Users
Compatibility:SQL Server 7.0

Users have accessed this code 8291 times.
 

(About the author)
 
     UPDATED with MORE features on 14th April 2001. This procedure generates INSERT statements using existing data from the given tables. Later, you can use these INSERT statements to generate the data. It's a kind of data scripting, just like scripting table structures. This procedure is very useful when you have to ship or package a database application, as you can use the INSERT scripts to copy the data. Advantages of this procedure: - No CURSORs are used - All datatypes are handled except images - NULLs are taken care of gracefully - Timestamp columns are taken care of - Identity columns are taken care of - Column names, table names, owner names with spaces are taken care of - Very flexible and configurable. Use the following 4 input parameters to customize the stored procedure: - @Target_Table - You can specisy an alternate table name - @Include_Column_List - You can either include or exclude the column list in the INSERT statement - @From varchar(800) - Use this parameter to filter the rows based on a filter condition (using WHERE) - @Include_Timestamp - Include or Exclude timestamp columns in the INSERT statement - @debug_mode - Displays the contents of the key variables for debugging purposes - @owner - To generate INSERTs for tables owned by non-DBO users - @ommit_images - to generate INSERTs excluding the image columns - @ommit_identity - to generate INSERTS excluding IDENTITY columns - @top - to generate INSERTs only for the TOP n rows in the table - @cols_to_include and @cols_toexclude to generate INSERTs by including or excluding specific columns. UPDATED VERSION OF THIS CODE CAN BE FOUND AT: http://vyaskn.tripod.com/code.htm
 
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!

--**************************************
--     
-- for :UPDATED: Procedure to script you
--     r data (it generates INSERT statements f
--     or your existing data)
--**************************************
--     
Copyright © 2001 Narayana Vyas Kondreddi. ALL rights reserved.
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzipto decompress it.

Virus note:All files are scanned once-a-day by Planet Source Code for viruses,but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:
1)Re-scan downloaded files using your personal virus checker before using it.
2)NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 7 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Advanced category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
2/28/2001 9:18:53 AM:philip hannent
Great Code that works well.  Great job.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
3/1/2001 1:46:52 AM:keu
Best code. i vote u 5 star. I am 
looking for this code so long 
already.thanks
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
3/30/2002 9:18:36 AM:Ernst
Super
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | SQL Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.