中の技術日誌ブログ

C#とC++/CLIと
VBと.NETとWindowsで戯れる
 

目次

Blog 利用状況

ニュース

自己紹介

東京でソフトウェアエンジニアをやっています。
お仕事大募集中です。
記事執筆や、講師依頼とかでも何でもどうぞ(*^_^*)
似顔絵 MSMVPロゴ
MSMVP Visual C# Since 2004/04-2013/03

記事カテゴリ

書庫

日記カテゴリ

00-整理

01-MSMVP

Identity Seedは決定的でないとだめ

Create Table [#Temp]
(
 [old-id] int not null,
 [new-id] int not null identity(14000,1)
)

これはOK

declare @NewIdentitySeed int

select @NewIdentitySeed = max([id])
from blog_content

Create Table [#RenumberContent]
(
 [old-id] int not null,
 [new-id] int not null identity (@NewIdentitySeed ,1)
)

これはダメ

理由は決定的じゃないから。かな?

投稿日時 : 2005年6月1日 1:52

コメントを追加

# re: Identity Seedは決定的でないとだめ 2005/06/01 10:04 Bryan

declare @NewIdentitySeed int

select @NewIdentitySeed = max([id])
from blog_content

declare @strTemp varchar(1000)
select @strTemp = '
Create Table [##RenumberContent]
(
[old-id] int not null,
[new-id] int not null identity (' + convert(varchar,@NewIdentitySeed) +' ,1)
)'
execute(@strTemp)


# re: Identity Seedは決定的でないとだめ 2005/06/01 13:36 河端善博

とりあえず、変数が利用できるようにしてほしいと、リクエスト出してみてもいいかもしれませんね。

# DBCC CHECKIDENTで回避 (Identity Seedは決定的でないとだめ) 2005/06/02 19:30 米田 Blog ( SQL Server MEMO )

DBCC CHECKIDENTで回避 (Identity Seedは決定的でないとだめ)

# Identity Seedは決定的でないとだめ2 2005/06/02 22:52 中の技術日誌ブログ

Identity Seedは決定的でないとだめ2

# OcdvAhpnRpwTHYFQp 2011/12/22 21:37 http://www.discreetpharmacist.com/

XAXAh0 I serched through the internet and got here. What a wonderful invention of the mankind. With the help of the network you communicate, learn, read !... That helped us to get acquainted!...

タイトル
名前
URL
コメント