Quick Search for:  in language:    
V20,Renumbering,identity,columns,stored,proce
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
SQL Stats

 Code: 45,316. lines
 Jobs: 126. postings

 How to support the site

 
Sponsored by:

 
You are in:
 
Login





Latest Code Ticker for SQL.
sp_db_paging_pr imary_key
By Marcus LeBlanc on 1/11


sp_db_paging
By Marcus LeBlanc on 1/11


Beginners pack
By hardik shah on 1/11


Inline Views
By Thivya Prabakaran on 1/6


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



 
 
   

Renumbering identity columns V2.0 in one stored procedure

Print
Email
 
VB icon
Submitted on: 6/6/2002 4:36:26 AM
By: Zoltan Tamas, Toth 
Level: Beginner
User Rating: By 1 Users
Compatibility:SQL Server 7.0, SQL Server 6.5 and earlier

Users have accessed this code 2067 times.
 

(About the author)
 
     Renumbering identity columns V2.0 in one stored procedure.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
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.

--**************************************
--     
-- Name: Renumbering identity columns V2
--     .0 in one stored procedure
-- Description:Renumbering identity colu
--     mns V2.0 in one stored procedure.
-- By: Zoltan Tamas, Toth
--
-- Inputs:EXEC Renum_Identity_Column
@i_Table_Name = 'Ident' --Table name
@i_Ident_seed = 1,
@i_Ident_Increment = 1
--
--This code is copyrighted and has-- limited warranties.Please see http://
--     www.Planet-Source-Code.com/vb/scripts/Sh
--     owCode.asp?txtCodeId=486&lngWId;=5--for details.--**************************************
--     

------------
-- //////////////////////////////
-- // sp_Renum_Identity_Column //
-- //////////////////////////////
IF EXISTS (SELECT name FROMsysobjects WHERE name = N'Renum_Identity_Column' AND type = 'P')
DROP PROCEDURE Renum_Identity_Column
GO
CREATE PROCEDURE Renum_Identity_Column 
 @i_Table_Name nvarchar(1000),
 @i_Ident_seed int = 1,
 @i_Ident_Increment int = 1
AS
 -- Created by Zoltan Tamas Toth on 2002
--     .06.05.
 -- Last updated by Zoltan Tamas Toth on
--      2002.06.06.
 SET NOCOUNT ON
 DECLARE 
@p_Dynamic_SQL nvarchar(4000)
 -- Allow ad hoc update to system catalo
--     g
 SET @p_Dynamic_Sql = '
 EXEC sp_configure ''allow update'', ''1'' 
 '
 EXEC master..sp_executesql @p_Dynamic_Sql
 SET @p_Dynamic_Sql = '
 RECONFIGURE WITH OVERRIDE 
 '
 EXEC master..sp_executesql @p_Dynamic_Sql
 -- Reset identity property of the colum
--     n 
 DECLARE 
 @tablename varchar(128), 
 @colname varchar(128), 
 @tableid int, 
 @ident_seed int, 
 @ident_incr int 
 SET @tablename = @i_Table_name
 SELECT @tableid = OBJECT_ID(@tablename) 
 SELECT @ident_seed = IDENT_SEED(@tablename) 
 SELECT @ident_incr = IDENT_INCR(@tablename) 
 -- Find the identity column. 
 SELECT @colname = name FROM syscolumns WHERE id = @tableid AND (colstat & 1 <> 0) 
 -- Reset identity 
 UPDATE syscolumns SET colstat = colstat & ~CAST(0x01 AS smallint) 
 WHERE id = @tableid AND name = @colname 
 ---------------------------------------
----------------
 -- Renumbering Identity column
 IF @colname IS NULL 
     BEGIN
    SELECT 'Table (' + @tablename + ') hasn''t got IDENTITY column!'
 END

ELSE BEGIN --IF @i_Order_Column IS NULL SET @i_Orde -- r_Column = @colname SET @p_Dynamic_SQL = ' DECLARE @p_colname int, @p_i int SET @p_i = ' + CONVERT ( nvarchar(20), @i_Ident_seed ) + ' DECLARE #cur_renumbering CURSOR FOR SELECT ' + @colname + ' FROM ' + @Tablename + ' ORDER BY ' + @Colname + ' OPEN #cur_renumbering FETCH NEXT FROM #cur_renumbering INTO @p_colname WHILE @@FETCH_STATUS = 0 BEGIN UPDATE ' + @tablename + ' SET ' + @colname + ' = @p_i WHERE ' + @colname + ' = @p_colname SET @p_i = @p_i + ' + CONVERT ( nvarchar(20), @i_Ident_Increment ) + ' FETCH NEXT FROM #cur_renumbering INTO @p_colname END
CLOSE #cur_renumbering DEALLOCATE #cur_renumbering ' EXEC ( @p_Dynamic_Sql ) END
--------------------------------------- ---------------- -- Set identity UPDATE syscolumns SET colstat = colstat | CAST(0x01 AS smallint) WHERE id = @tableid AND name = @colname SET @p_Dynamic_Sql = ' EXEC sp_configure ''allow update'', ''0'' ' EXEC master..sp_executesql @p_Dynamic_Sql -------------- SET @p_Dynamic_Sql = ' RECONFIGURE WITH OVERRIDE ' EXEC master..sp_executesql @p_Dynamic_Sql --------------- SET @p_Dynamic_Sql = ' DECLARE @p_i int SELECT @p_i = MAX(' + @colname + ') FROM ' + @tablename + ' DBCC CHECKIDENT (' + @tablename + ', RESEED, @p_i) ' EXEC ( @p_Dynamic_Sql ) RETURN ( 0 ) GO GRANT EXECUTE ON Renum_Identity_Column TO PUBLIC GO ---------------------------------------- ----------


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 Beginner 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

 There are no comments on this submission.
 
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.