
June 2nd, 2004, 11:07 AM
|
|
Registered User
|
|
Join Date: Dec 2003
Location: Toronto
Posts: 35
Time spent in forums: 1 m 47 sec
Reputation Power: 0
|
|
|
IDENTITY - cannot turn it off
I have
CREATE TABLE [dbo].[File] (
[FileID] [int] IDENTITY (1, 1) NOT NULL ,
....,
....
I need to insert 20 records
from 'restore_file' table
Of course it'll give me an error
so I try to remove IDENTITY option
in EM in table Design.
But it hangs and and freezes EM.
I have to close MMC.
[File] table has 44000 records.
FIELD 'FileBinary' stores Binary data.
I was wondering if there is a
a short command to DISABLE IDENTITY?
|