[转帖]修复identity 类型字段数据的跳跃 续1
<p>下面是SP_IDENTITY.120.SQL,用于  12.0 以后版本 <br/>/*  <br/> * SP_IDENTITY.120.SQL - version for ASE 12.0 or later <br/> * (when running ASE 11.9/11.5/11.0, install SP_IDENTITY.119.SQL instead) <br/> *  <br/> * Description <br/> * =========== <br/> * This file contains the stored procedure 'sp_identity', which performs some  <br/> * useful functions w.r.t. identity columns: <br/> * <br/> *   - displays all tables with an identity column in the current database <br/> *   - displays the identity value stored on a table's OAM page <br/> *   - resets the identity value stored on a table's OAM page <br/> * <br/> * For details and background, see <a href="http://www.sypron.nl/idfix.html">http://www.sypron.nl/idfix.html</a> . <br/> * <br/> * <br/> * Installation <br/> * ============ <br/> * Execute this script using "isql", using a login having both "sa_role" <br/> * and "sso_role". <br/> * The stored procedure will be created in the sybsystemprocs database. <br/> * <br/> * <br/> * Notes <br/> * ===== <br/> * - Traceflag 3604 should be enabled before running sp_identity for a  <br/> *   specific table ("dbcc traceon(3604)"); if omitted, you won't see  <br/> *   any output. <br/> * <br/> * - To run sp_identity for a specific table, sa_role and sybase_ts_role  <br/> *   are required. <br/> * <br/> * - sp_identity was successfully tested on ASE versions 11.0.3, 11.5,  <br/> *   11.9.2 and 12.0 on various platforms. <br/> * <br/> * - sp_identity will not work on ASE 11.0 because this version  <br/> *   does not support the 'case' expression. <br/> * <br/> * - sp_identity was not tested on a 64-bit ASE version. <br/> * <br/> * <br/> * Revision History <br/> * ================ <br/> * Version 1.0  17-Dec-2000  First version <br/> * Version 1.1  Oct-2002  Handle identity_gap=NULL (thanks to Alan Cooper), <br/> *                        and some small improvements for installation <br/> * Version 1.2  Apr-2003  Improved installation <br/> *  <br/> * <br/> * Copyright Note & Disclaimer : <br/> * ============================= <br/> * This software is provided "as is"; there is no warranty of any kind. <br/> * While this software is believed to work accurately, it may not work  <br/> * correctly and/or reliably in a production environment. In no event shall   <br/> * Rob Verschoor and/or Sypron B.V. be liable for any damages resulting  <br/> * from the use of this software.  <br/> * You are allowed to use this software free of charge for your own  <br/> * professional, non-commercial purposes.  <br/> * You are not allowed to sell or bundle this software or use it for any  <br/> * other commercial purpose without prior written permission from  <br/> * Rob Verschoor/Sypron B.V. <br/> * You may (re)distribute only unaltered copies of this software, which  <br/> * must include this copyright note, as well as the copyright note in  <br/> * the header of each stored procedure. <br/> * <br/> * Note: All trademarks are acknowledged. <br/> * <br/> * Please send any comments, bugs, suggestions etc. to the below email <br/> * address. <br/> * <br/> * Copyright (c) 2000-2002 Rob Verschoor/Sypron B.V. <br/> *                    P.O.Box 10695 <br/> *                    2501 HR Den Haag <br/> *                    The Netherlands <br/> * <br/> *                    Email: <a href="mailto:rob@sypron.nl">rob@sypron.nl</a><br/> *                    WWW  : <a href="http://www.sypron.nl/">http://www.sypron.nl/</a>
<br/> *----------------------------------------------------------------------------  <br/> */ </p><p>set nocount on <br/>go <br/>set flushmessage on <br/>go </p><p>use sybsystemprocs <br/>go </p><p>-- we need to be at ASE 12.0 or later; if not, abort this script <br/>if isnull(object_id("master.dbo.sysqueryplans"),99) >= 99 <br/>begin <br/>   print "" <br/>   print "" <br/>   print "********************************************" <br/>   print "********************************************" <br/>   print " This script is for ASE 12.0 or later." <br/>   print " Please install SP_IDENTITY.119.SQL instead." <br/>   print "********************************************" <br/>   print "********************************************" <br/>   print " " <br/>   print " " <br/>   print "" <br/>   set background on  -- terminate this script now <br/>end <br/>go </p><p>print "" <br/>print "Installing 'sp_identity'..." <br/>print "" <br/>go </p>
回复:(JohnPhan)[转帖]修复identity 类型字段数据的...
<p>if object_id("sp_identity_help") <> NULL <br/>begin <br/>   drop proc sp_identity_help <br/>end <br/>go </p><p>create proc sp_identity_help <br/>/* Copyright (c) 2000-2002 Rob Verschoor/Sypron B.V. */ <br/>as <br/>begin <br/>   print " " <br/>   print " Usage: sp_identity table_name, ""hex-string-from-OAM-page"", new-identity-value " <br/>   print " Notes: " <br/>   print " - specifying only parameter 1 retrieves the current identity value for" <br/>   print "   that table from the OAM page as a hexadecimal string." <br/>   print " - specifying this hexadecimal string as the second parameter (in quotes)" <br/>   print "   will decode the hex value to a numeric value." <br/>   print " - specifying a numeric value for the third parameter will set that" <br/>   print "   value as the new identity value for this table." <br/>   print " - parameters 2 and 3 cannot be specified together: one of them must be NULL." <br/>   print " - ""dbcc traceon(3604)"" must be run before using option 2 or 3" <br/>   print " " <br/>   print " Copyright (c) 2000-2002 Rob Verschoor/Sypron B.V." <br/>   print " See <a href="http://www.sypron.nl/idfix.html">http://www.sypron.nl/idfix.html</a> for background information & updates." <br/>   print " " <br/>end <br/>go </p><p>grant execute on sp_identity_help to public <br/>dump tran sybsystemprocs with truncate_only <br/>go </p><p>if object_id("sp_identity") <> NULL <br/>begin <br/>   drop proc sp_identity <br/>end <br/>go </p><p>create proc sp_identity <br/>/* Copyright (c) 2000-2002 Rob Verschoor/Sypron B.V. */ <br/> @p0 varchar(50) = NULL, -- table name <br/> @p1 varchar(50) = NULL, -- hex value to decode <br/> @p2 numeric(38) = NULL  -- new value to set <br/>as <br/>begin <br/>set nocount on <br/>declare @n numeric(38), @j numeric(38), @n256 numeric(3), @n10 numeric(38) <br/>declare @i int, @max int, @idlen int, @idlenb int, @ib int, @len int <br/>declare @p0_id int, @b int, @b1 binary(1), @lsb int <br/>declare @idgap int, @idburn int, @maxidgap numeric(38), @max1 int, @max2 int <br/>declare @idburnpct numeric(5,2), @v int, @ntab int <br/>declare @c2 char(2), @doampg int, @indid int, @dbname varchar(32) <br/>declare @vc50 varchar(50), @colname varchar(32), @vb16 varbinary(16) </p><p>select @dbname = db_name() </p><p>-- check version <br/>select @v = 0 <br/>if exists (select * from sysobjects  <br/>           where name = "sysqueryplans" and type = "S") <br/>begin <br/>    select @v = 12 <br/>end </p><p>if @p0 = '?' <br/>begin <br/>   exec sp_identity_help <br/>   return 0 <br/>end </p><p>-- numeric values <br/>select @n256 = 256 <br/>select @n10 = 10 </p><p>-- id burning set factor <br/>select @idburn = value from master.dbo.syscurconfigs where config=141 <br/>select @idburnpct = convert(numeric(5,2), @idburn * 0.00001) </p><p>-- figure out msb/lsb <br/>select @lsb = 0 <br/>if substring(convert(binary(4), 1), 1 ,1) = 0x01 select @lsb = 1 <br/>if substring(convert(binary(4), 1), 2 ,1) = 0x01 select @lsb = 2 <br/>if substring(convert(binary(4), 1), 3 ,1) = 0x01 select @lsb = 3 <br/>if substring(convert(binary(4), 1), 4 ,1) = 0x01 select @lsb = 4 </p><p>-- get all tables containing identity columns in this database <br/>select id = so.id, owner = su.name, uid = so.uid, so.name, si.doampg, si.indid, idgap =  </p><p>isnull(si.identitygap,0), <br/>       colname = sc.name, sc.prec, maxgap = convert(numeric(38), ceiling((@idburn * 0.0000001) *  </p><p>power(@n10,prec))) <br/>into #id <br/>from sysindexes si, syscolumns sc, sysobjects so, sysusers su <br/>where si.indid < 2  <br/>  and so.type = "U"  <br/>  and sc.status & 128 = 128 <br/>  and so.id = sc.id  <br/>  and so.id = si.id <br/>  and so.uid = su.uid <br/>select @ntab = @@rowcount </p><p>set arithabort numeric_truncation off </p><p>if @p0 = null <br/>begin <br/>   -- display all tables with identity columns in the current DB <br/>   if @ntab = 0 <br/>   begin <br/>      print " There are no tables with an identity column in database '%1!'", @dbname <br/>  return 0 <br/>   end <br/>   print " Tables with an identity column in database '%1!':", @dbname <br/>   print " " <br/>   select @max1 = max(char_length(owner + "." + name + "." + colname)) + 12 from #id <br/>   select @max2 = max(char_length(convert(varchar(38), maxgap))) + 7 from #id </p><p>   if @max1 <= 52 and @max2 <= 24 <br/>   begin <br/>     select convert(varchar(52), owner + "." + name + "." + colname + " numeric(" +  </p><p>convert(varchar(2),prec) + ")") "Owner.Table.Column datatype", <br/>    convert(varchar(24), case when idgap = 0 then convert(varchar(38),maxgap) + "  </p><p>(burn)" <br/>       else convert(varchar, idgap) + " (identity_gap)" <br/>     end) "Maximum Identity Gap" </p><p>     from #id <br/>     order by name <br/>   end <br/>   else <br/>   if @max1 <= 32 and @max2 <= 44 <br/>   begin <br/>     select convert(varchar(32), owner + "." + name + "." + colname + " numeric(" +  </p><p>convert(varchar(2),prec) + ")") "Owner.Table.Column datatype", <br/>    convert(varchar(44), case when idgap = 0 then convert(varchar(38),maxgap) + "  </p><p>(burn)" <br/>       else convert(varchar, idgap) + " (identity_gap)" <br/>     end) "Maximum Identity Gap" </p><p>     from #id <br/>     order by name <br/>   end <br/>   else <br/>   begin <br/>     select convert(varchar(78), owner + "." + name + "." + colname + " numeric(" +  </p><p>convert(varchar(2),prec) + ")") "Owner.Table.Column datatype", <br/>    convert(varchar(50), case when idgap = 0 then convert(varchar(38),maxgap) + "  </p><p>(burn)" <br/>       else convert(varchar, idgap) + " (identity_gap)" <br/>  end) "Maximum Identity Gap" <br/>      from #id <br/>      order by name <br/>   end </p><p>   print " " <br/>   print " Legend:" <br/>   print "    (burn)         : gap size is determined by ""identity burning set factor"" " <br/>   if @v = 12 <br/>   begin <br/>   print "    (identity_gap) : gap size is determined by the ""identity_gap"" setting" <br/>   end <br/>   print " " <br/>   print " Current value for ""identity burning set factor"" = %1! (=%2!%%)", @idburn, @idburnpct </p><p><br/>   return 0 <br/>end </p>回复:(JohnPhan)[转帖]修复identity 类型字段数据的...
<p>if charindex("sa_role", show_role()) = 0 <br/>begin  <br/>   print "You must have 'sa_role' to run this procedure." <br/>   return -1 <br/>end </p><p>if charindex("sybase_ts_role", show_role()) = 0 <br/>begin  <br/>   print "You must have 'sybase_ts_role' to run this procedure." <br/>   return -1 <br/>end </p><p>-- get some info on the object <br/>select @p0_id = object_id(@p0) <br/>if @p0_id = NULL <br/>begin <br/>   print " Error: '%1!' is not a user table.", @p0 <br/>   return -1 <br/>end </p><p>if @p0 not like "%.%" <br/>begin <br/>  select @ntab = count(*) from sysobjects where name = @p0 and type = "U" </p><p>  if @ntab > 1 <br/>  begin <br/>     print " %1! tables named '%2!' exist in this database:", @ntab, @p0 <br/> print " " <br/>     select owner + "." + name "owner.table_name"  <br/> from #id where name = @p0 order by uid <br/> print " " <br/>     print " Specify 'owner.table_name' to identify the table." <br/> return -1 <br/>  end <br/>end </p><p>select @doampg = doampg, @indid = indid, @idgap = idgap <br/>from #id where id = @p0_id </p><p>if not exists (select 1 from syscolumns where id = @p0_id and status & 128 = 128)   <br/>begin <br/>   print " Error: Table '%1!' does not have an identity column", @p0 <br/>   return -1 <br/>end </p><p>-- retrieve the length of the numeric identity column as declared when the <br/>-- table was created <br/>select @len = prec, @colname = name <br/>from syscolumns where id = @p0_id and status & 128 = 128 <br/>if @@rowcount = 0 <br/>begin <br/>   print " Error: Could not retrieve length of identity column for table '%1!'", @p0 <br/>   return -1 <br/>end </p><p>select @idlen = @len -- column precision (positions) <br/>select @idlenb = (@idlen+1-((@idlen+5)/12)-(@idlen/12))/2 -- column length (bytes) </p><p>print " " <br/>print " Table             = %1! (id=%2!)", @p0, @p0_id <br/>print " Identity column   = %1! numeric(%2!)", @colname, @len <br/>--print " OAM page          = %1!", @doampg <br/>--print " Bytes on OAM page = %1!", @idlenb <br/>if @idgap > 0 <br/>begin <br/>   print " Max. Identity Gap = %1! (""identity_gap"" = %2!)", @idgap, @idgap <br/>end <br/>else <br/>begin <br/>   set arithabort numeric_truncation off <br/>   select @maxidgap = ceiling((convert(numeric(38),@idburn) * 0.0000001) * power(@n10,@len)) <br/>   print " Max. Identity Gap = %1!", @maxidgap <br/>   print "                     (""identity burning set factor"" = %1! = %2!%%)", @idburn, @idburnpct <br/>   if @v = 12 <br/>   begin <br/>   print "                     (Note: ""identity_gap"" has not been set for this table !)"    <br/>   end <br/>end <br/>print " " </p><p>if @p1 = NULL and @p2 = NULL -- retrieve current ID value <br/>begin <br/>   print " " <br/>   print " Reading identity value from OAM page... (traceflag 3604 should be enabled !)" <br/>   print " " <br/>   dbcc object_atts (@p0, 0, get) <br/>   print " " <br/>   print " To decode this hexadecimal value, re-run 'sp_identity' with the hexadecimal" <br/>   print " string as a quoted 2nd parameter (you can leave the spaces in). " <br/>   print " Example:  sp_identity %1!, ""the-hex-string-from-the-above-output"" ", @p0 <br/>   print " " <br/>   -- <br/>   -- only for 12.0+, dbcc listoam will display the values in the OAM and the DES <br/>   -- <br/>   --dbcc listoam(@dbname, @p0_id, @indid) <br/>   -- <br/>   return 0 <br/>end </p><p>if upper(@p1) like "[ 0-9A-F]%" -- entered a hex string, decode it <br/>begin </p><p>if @p2 != NULL <br/>begin <br/>   print " Error: When decoding a hex value from the OAM page, parameter 3" <br/>   print " (the new identity value) must be NULL." <br/>   exec sp_identity_help <br/>   return -1 <br/>end </p><p>select @ib = @idlenb -- counts bytes <br/>select @i  = char_length(@p1) -- counts string <br/>select @n = 0 -- holds result </p><p>while 1 = 1 <br/>begin <br/>   select @c2 = substring(@p1, (char_length(@p1)-@i)+1, 2) </p><p>   --print "Step %1!, [%2!]", @ib, @c2 <br/>   if upper(substring(@c2,1,1)) = " " -- ignore single space pasted in by user <br/>   begin <br/>     select @i = @i - 1 <br/> continue <br/>   end </p><p>   if (upper(@c2) not like "")  <br/>   begin <br/>     print " Error: Invalid characters (%1!) in hex string", @c2 <br/>     break <br/>   end </p><p>   -- add this byte to the result <br/>   select @vc50 = @vc50 + @c2 <br/>   select @j = power(@n256, (@ib-1)) <br/>   select @n = @n + @j * hextoint("0x" + @c2) <br/>   --print "Step %1!, exp= %2!, result = %3!", @ib, @j, @n </p><p>   -- next byte <br/>   select @ib = @ib - 1  <br/>   if @ib = 0 break  -- ready </p><p>   -- next 2 chars <br/>   select @i = @i - 2 <br/>   if @i = 0  <br/>   begin <br/>      -- we shouldn't have got here, error <br/>  print " Error: ID column length and specified hex string do not match !" <br/>      break <br/>   end <br/>end </p><p>if @ib = 0 <br/>begin <br/>   print " Decoded identity value on OAM page = %1!", @n <br/>   print " (hex= %1!)", @vc50 <br/>   print " " <br/>   return 0 <br/>end <br/>else <br/>begin <br/>   print " Error: Aborted due to error." <br/>   return -1 <br/>end <br/>end </p><p>if @p2 != NULL -- entered a new ID value, set it <br/>begin </p><p>if @p1 != NULL <br/>begin <br/>   print " Error: When setting a new identity value, parameter 2" <br/>   print " (the hex string from the OAM page) must be NULL." <br/>   exec sp_identity_help <br/>   return -1 <br/>end </p><p>-- set the new ID value <br/>if @p2 <= 0 <br/>begin <br/>   print " Error: The new identity value must be >= 0." <br/>   print " " <br/>   exec sp_identity_help <br/>   return -1 <br/>end </p><p>if char_length(convert(varchar, @p2)) > @idlen <br/>begin <br/>   select @vc50 = replicate("9", @idlen) <br/>   print " Error: New identity value (%1!) is too large", @p2 <br/>   print "        for this identity column. The maximum possible value", @p2 <br/>   print "        is %1! (%2! positions).", @vc50, @idlen <br/>   return -1 <br/>end </p><p>if @lsb = 0 <br/>begin <br/>   print " " <br/>   print "Internal error in 'sp_identity':" <br/>   print "Cannot figure out byte order on this platform." <br/>   print "Please send a note to <a href="mailto:'rob@sypron.nl'">'rob@sypron.nl'</a> with the text of this" <br/>   print "error and your @@version string." <br/>   return -1 <br/>end </p><p>-- convert the numeric value to hex <br/>select @ib = @idlenb -- counts bytes <br/>select @i  = 15 </p><p>select @vc50 = NULL -- holds result <br/>select @vb16 = NULL -- holds result <br/>select @n256 = 256 <br/>select @n = @p2 <br/>set arithabort numeric_truncation off </p><p>while 1 = 1 <br/>begin <br/>   select @j = power(@n256, @i) </p><p>   select @b = @n / @j <br/>   select @n = @n - (@b * @j) <br/>   select @c2 = right(inttohex(@b),2) <br/>   select @b1 = substring(convert(binary(4), @b), @lsb,1) </p><p>   select @vb16 = @vb16 + @b1 </p><p>   --print "Step %1!, @b=%2!, hex(c2)=%3!, hex(b1)=%5!, result=%4!", @i, @b, @c2, @vb16, @b1 </p><p>   select @i = @i - 1  <br/>   if @i < 0 break  -- ready <br/>end </p><p>if @i < 0 <br/>begin <br/>   select @vb16 = substring(@vb16, 16 - (@idlenb) + 1, (@idlenb) ) + substring(@vb16, 1, 16 -  </p><p>(@idlenb) ) </p><p>   -- set the new ID value <br/>   dbcc object_atts(@p0, 0, "put", @vb16) </p><p>   print " " <br/>   print " Identity value on OAM page has been set to %1!", @p2 <br/>   print " (hex= %1!)", @vb16 <br/>   print " " <br/>   select @p2 = @p2 + 1 <br/>   print " You should now do a 'shutdown with nowait' immediately." <br/>   print " After restarting the server, the value assigned to the next row " <br/>   print " inserted into '%1!' will be %2!.", @p0, @p2 <br/>   print " " <br/>   return 0 <br/>end <br/>else <br/>begin <br/>   print " Error: Aborted due to error." <br/>   return -1 <br/>end <br/>    <br/>end </p><p>-- we should never get here <br/>print "Internal error in 'sp_identity': Reached invalid end of procedure." <br/>return -1 <br/>end <br/>go </p><p>grant execute on sp_identity to public <br/>dump tran sybsystemprocs with truncate_only <br/>go </p><p><br/>print "Ready. For usage information, run 'sp_identity ""?"" '." <br/>print "" <br/>go </p><p>/* <br/>** end <br/>*/ <br/></p>
		页: 
[1]