Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
451 views

IDENTITY INSERT and LINQ to SQL

I have a SQL Server database. This database has a table called Item. Item has a property called "ID". ID is the primary key on my table. This primary key is an int with an increment value of 1. When ...
6
votes
3answers
844 views

Which command would replace IDENTITY INSERT ON/OFF from SQLServer in Oracle?

I have to migrate this query (simplified here) from T-SQL to ORACLE SET IDENTITY_INSERT table ON INSERT INTO table (id, value) VALUES (1, 2) SET IDENTITY_INSERT table OFF id being an Identity ...
5
votes
3answers
703 views

script to add and remove auto-increment property from a column

For a sql script I'm working on, I need to programmatically remove the identity, identity seed, and identity increment for a column in an existing table, then add them back to the table at the end of ...
5
votes
1answer
1k views

Using IDENTITY_INSERT with EF4

I am trying to create a record in the db that has a predefined primary key value. I know how to do this with sql, but I was wondering if EF can do this for me? Otherwise, I will have to create a ...
4
votes
3answers
842 views

SqlBulkCopy Insert with Identity Column

I am using the SqlBulkCopy object to insert a couple million generated rows into a database. The only problem is that the table I am inserting to has an identity column. I have tried setting the ...
4
votes
1answer
1k views

Forcing an identity insert with NHibernate / Fluent Nhibernate

We have a fairly robust system using NHibernate, we're in the middle of migrating from a single database server to having two servers, one for administration and one for our public facing web site. ...
3
votes
1answer
511 views

ASP.NET MVC IDENTITY_INSERT is set to OFF

I have the following code in my HomeController: public ActionResult Create() { return View(); } [ValidateInput(false)] [AcceptVerbs(HttpVerbs.Post)] ...
2
votes
2answers
673 views

Turning IDENTITY_INSERT ON on a table to load it with DB Unit

I try to load a table, that have an identity column, with DB Unit. I want to be able to set the id value myself (I don't want the database generate it for me). Here is a minimal definition of my ...
2
votes
2answers
664 views

How to put SET IDENTITY_INSERT dbo.myTable ON statement in my C# app

What I need to do is have a SET IDENTITY_INSERT dbo.myTable ON statement be part of my C# app, but I don't know how to do this. What's the syntax of using the above statement in a c# app?
2
votes
1answer
447 views

IDENTITY_INSERT ON inside of cursor does not allow inserted id

I am trying to set some id's for a bunch of rows in a database where the id column is an identity. I've created a cursor to loop through the rows and update the ids with incrementing negative numbers ...
1
vote
2answers
218 views

Force SET IDENTITY_INSERT to take effect faster from MS Access

I'm working on upsizing a suite of MS Access backend databases to SQL Server. I've scripted the SQL to create the table schemas in SQL Server. Now I am trying to populate the tables. Most of the ...
1
vote
4answers
81 views

I have a problem with my SQL statement

Threads ------- ThreadID UsersID Date ThreadTitle ThreadParagraph ThreadClosed Topics ----- TopicsID Theme Topics Date Here is my statement: StringBuilder insertCommand = new ...
1
vote
4answers
102 views

batch insertion returns disorder identity fields

I have (tableA) with one identity field (ID), I need to insert multiple rows at once with one insertion operation, so I use table structure as a passing parameter to my stored procedure I need the ...
1
vote
1answer
491 views

How to automatically reseed after using identity_insert?

I recently migrated from a PostgreSQL database to a SQL Server database. To switch the data over I had to enable IDENTITY_INSERT. Well come to find out that I get all sorts of strange errors due to ...
1
vote
2answers
1k views

I set IDENTITY_INSERT to ON but I get a SqlException saying it's OFF

I'm trying to grab thousands of invoices (and other stuff) from a text file and insert them into SQL Server 2008. I wrote a little console app to do this and it uses LINQ to SQL. After I insert all ...
1
vote
1answer
292 views

How to off the IDENTITY column of table in TSQL

i used 'SET IDENTITY_INSERT OFF' and this is executing successfully but in the table still identity on only please help any one
1
vote
5answers
85 views

Is the usage of identity insert good with metadatatables

I have several tables within my database that contains nothing but "metadata". For example we have different grouptypes, contentItemTypes, languages, ect. the problem is, if you use automatic ...
1
vote
2answers
571 views

How can I set the IDENTITY_INSERT option for a JDBC PreparedStatement?

I need to copy data into an MSSQLServer 2005 database table which has an identity column. I've seen how to disable the identity column by executing SET IDENTITY_INSERT <table> ON before the ...
1
vote
2answers
177 views

SQL: No Identity feature workaround using triggers, Any Help?

I'm a little rusty with my triggers and what not and am trying to figure out this problem for a class: In a database TEST, tables do not have the option of the IDENTITY feature. In other words, when ...
1
vote
2answers
5k views

Sql Server Ce 3.5 Identity insert

hi there got an issue with identity columns in Sql Server CE when using Server explorer, in VS2008, executing the following script SET IDENTITY_INSERT testTable ON; Insert into testTable (id,name) ...
1
vote
4answers
5k views

Linq to SQL: Why am I getting IDENTITY_INSERT errors?

I'm using Linq to SQL. I have a DataContext against which I am .SubmitChanges()'ing. There is an error inserting the identity field: Cannot insert explicit value for identity column in table 'Rigs' ...
0
votes
1answer
38 views

Insert data in relationship table without identity_insert ON

I am having a scenario where I have to insert some master data into the table with script, so that we can this script on production server while deployment. My tables are Category --Id (PK, ...
0
votes
1answer
34 views

ETL Strategies: Identity Insert vs. Use Identity Logic

One of my ETL moves about 18 Million rows from one server to another for further processing. I am using the FAST LOAD option. For the Identity Column, I have two options: Use IDENTITY INSERT Don't ...
0
votes
1answer
70 views

SQL Server integrity check after identity_insert on / off

I'm importing data from a legacy application (php + mysql) to a rewritten version (sql server 2008 and mvc3). I'm currently in the middle of writing a db synchronization / conversion package. The ...
0
votes
3answers
145 views

Insert into table with Identity and foreign key columns

I was trying to insert values from one table to another from two different databases. My issue is I have two tables with a relation and the first table is having an identity column also. eg table ...
0
votes
0answers
17 views

translating keys by joining source data to inserted rows in tsql

I want to do the following, to get the inserted ids translated to the source table's ids DECLARE @InsertedAnimals TABLE (AnimalID INT, @CatID INT); INSERT INTO Cat (Name) OUTPUT Animal.AnimalID, ...
0
votes
4answers
256 views

Stored Procedure IDENTITY_INSERT

I'm recently change my data table, I remove column and add a new column that define as identity = True and identity seed = 1, identity increment = 1. When i tried to insert data to this table by STORE ...
0
votes
2answers
85 views

Dependent insert statements

I have a table with data about a customer, Customer(name, address), with rows like "John Doe", "Some Street 123". For each row in the table, I want to insert one row in the Person(id, name) table and ...
0
votes
4answers
176 views

How to avoid “SQL Server automatically uses the new inserted value as the current identity value.”

I'm using SQL Server 2008 as per microsoft, http://msdn.microsoft.com/en-us/library/ms188059.aspx when I execute the following set identity_insert on //insert statements here set identity_insert ...
0
votes
2answers
146 views

proper way of updating sql server table using access front end

i have a front end in access and back end is sql server 2008 one of the fields is the account number and here are the rules it is a zipcode like 92111 plus a dash plus a number. so the first one ...
0
votes
1answer
201 views

identity_insert is turned on but there is an error,yet

With following code,I have identity_insert turned on to be able to insert some value explicitly: SET IDENTITY_INSERT dbo.myTable ON Go the identity insert is set to be primary key and not null in ...
0
votes
3answers
3k views

Database-wide equivalent of SET IDENTITY_INSERT OFF

In my eternal saga to insert 1.4 million rows of data from a SQL script, I've written a basic WinForms app that takes each line of the script and executes it individually. However, because the ...