The identity-column tag has no wiki summary.
0
votes
1answer
34 views
Why rolling back transation in SQL Server increases seed values
I am doing some initial development in SQL Server 2008 version and because it was test script I had script the queries in transaction to not affect the database tables actually.
But it seems the ...
0
votes
1answer
62 views
How to prevent interim identity holes in SQL Server
Is there a way (using config + transaction isolation levels) to ensure that there are no interim holes in a SQL Server IDENTITY column? Persistent holes are OK. The situation I am trying to avoid is ...
0
votes
2answers
28 views
Excel - Tell me the column header that had the highest number for each row
| Name | Blues | Greens | Yellows | Reds | Winner |
| Smith | 35 | 42 | 52 | 17 | |
I want to know the column header that has the largest number for each row and insert its ...
-1
votes
0answers
75 views
C# 2012 Using IDENT_CURRENT with SQL DataReader
New question folks. I am working in a Silverlight WCF application and I have to insert a row of data. Not terribly difficult mind you, but there is a problem. I need to find the last identity used in ...
0
votes
3answers
60 views
SQL Server identity related error
I am using this query in SQL SERVER 2008..
SET IDENTITY_INSERT ABC ON
BULK
INSERT ABC
FROM 'F:\test.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
GO
and getting an error :
...
1
vote
1answer
38 views
SQL Arithmetic Overflow for Identity Insert
I have an error with arithmetic overflow inserting values into a lookup table with a row-id set as TINYINT datatype. This IS NOT a case where the number of unique records exceeds 255 values. This is a ...
0
votes
0answers
65 views
SQL Server 2005 Merge Replication Identity Specification Issue
I've done my research and have had almost no luck anywhere. My initial thoughts are that I might be out of luck, barring a complete remake of the database, but here goes.
I have a merge replication ...
0
votes
1answer
42 views
How to get list of all tables that has identity columns
I would like to learn how to fetch list of all tables that has identity columns from a MS SQL database.
3
votes
2answers
100 views
Python - find average for columns with unique matching value in nested list
This is very similar to this question: Finding minimum, maximum and average values for nested lists?
The important difference and root of the question being I would like to find min, max, average ...
0
votes
4answers
69 views
Calculate mean and sd by ID and Day within a column
I'm new to R and need to summarize mean and sd of my data in a new table:
The raw data look like that:
ID Day pH
1 1 7
1 1 7.2
1 1 7.1
2 1 7.3
2 1 ...
0
votes
1answer
128 views
Data insert issue after migrating database from SQL Azure to SQL Server
I have a database on SQL Azure which has an identity primary.
After using SQL Server Import and Export Wizard, I transferred the data to my SQL Server 2008 R2 database.
My ASP.NET Application runs ...
0
votes
1answer
64 views
How to Retrieve the most recent Identity value and use it in an INSERT statement in SQLServer/Azure?
[EDIT]
In response to Mitch Wheat's advice, inserts now work with (SCOPE_IDENTITY(), 'Semi-Fail'), (@@IDENTITY, 'Semi-Fail'); however, both produce NULL values on select:
create clustered index ...
-1
votes
1answer
143 views
Web application throws 'Cannot INSERT null… column does not allow NULLS
Context: Web Application (asp.net) using FormView to edit and insert pupil data into a SQL Server DB. Error:
System.Data.SqlClient.SqlException: Cannot insert the value NULL into column ...
-2
votes
2answers
87 views
Extract a column from text file [closed]
I have a text file. And I need to extract a specific column. However, as we see the text file, we see it in tabular form. But of course, the computer does not. I was told that I have to use regular ...
0
votes
0answers
31 views
Identity.IDENTITY alternativ with Android API Level 9
I develop an app for Android Version 2.3 and already have some working code till I realize that one part won't work with a lower Version then 4.0.
So now I need an alternativ for this part.
I insert ...
-1
votes
2answers
44 views
mySQL column returns colum name insted of values
I have this problem that select returns the name of the column insted of the values in it. I have no idea what's causing that behavious.
Upper table is the result i get and lower table is the whole ...
1
vote
0answers
99 views
How PDFBox detect columns?
I'm trying to extract text from pdf documents. I've tested several tools like PDFBox, TET, PDFTextStream and so on, but none of them is good for extracting the text of Persian multi-columns pdf ...
0
votes
2answers
196 views
copying data from one table to another except the Identity column
Is there any way to copy all column values from one table to another except the Identity column, without mentioning all the rest of the column names?
I have a table with 63 columns. I created a ...
1
vote
1answer
89 views
Avoid filling identity gaps after migration
I have migrated a series of tables from an SQL Server 2008 to a new SQL Server 2012 machine via Transactional Replication. That works fine so far and I also replicated indexes and default values to ...
1
vote
1answer
130 views
How do I add the IDENTITY property to existing SQL Azure table?
I have created a couple of tables in SQL Azure and forgot to mark the primary keys as identity columns. There is no data in the tables yet, but the check box marked Is Identity is disabled.
How do ...
0
votes
1answer
108 views
Issue with fluent nhibernate TriggerIdentity in SQL Server?
When I tried to insert data into a table in SQL Server, which has an ID column specification as following, I'm getting the error,
Cannot insert NULL in RowID column
even though I've written ...
4
votes
1answer
279 views
Exponentially deteriorating performance on inserts in SQL Server Compact 4.0 tables with an Identity column
EDIT: the issue below has been fixed in the Entity Framework 6.
Running the code below takes a disappointing 2 minutes and 10 seconds. Running it a second time takes 6.5 minutes. This question is ...
1
vote
3answers
232 views
Is using a (sequential) GUID the only viable alternative to a database generated ID?
We are migrating our MS-Access database to SQL Server Compact 4.0 using the Entity Framework 5 Code First approach. We found that using Database generated Integer ID's is very slow and to make it ...
1
vote
2answers
262 views
More than one identity column in a SQL Server table
I have the following problem to resolve and I think I need some help as I don't think what I'm thinking as a possible solution is correct:
I have a SQL Server table with an identity column. This ...
-1
votes
1answer
44 views
Specifying column position for a base and child class
I have child class MyMetric and a base class AbstractMetric. The base class is marked to have it's columns in it's base classes tables (@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)) and ...
0
votes
0answers
146 views
Use auto generate key in asp.net
I have a field which is an auto generated primary key. Now I need to insert a row with this field as one of its column. How should I create "insert" arguments?
protected void ...
0
votes
2answers
104 views
Find column name SQL
If it is possible, I want to return another column that contains the name of the column where the variable is found (CH1, CH2 or CH3).
Something like:
v1 => ch3
v2 => ch1
This is my ...
0
votes
0answers
53 views
Converting sys.sql_expressions_dependencies based query to sys.sql_dependencies query in SQL Server
The query:
Query.SQL.Add(' SELECT distinct o.name, o.id obj_id FROM SYSOBJECTS o INNER JOIN sysusers u ON o.uid=u.uid ');
Query.SQL.Add(' LEFT OUTER JOIN ( ');
Query.SQL.Add(' select * ...
0
votes
1answer
145 views
KendoGrid - MVC - Entity - Identity column
I am building an MVC, Entities application with KendoGrids.
I have build this kendoGrid
@(Html.Kendo().Grid<ModelApp.Models.Tickets>()
.Name("ticketgrid")
.Columns(columns =>
{
...
2
votes
2answers
789 views
identity increment is jumping in sql server database
In one of my tables "Fee" in Sql Server Database identity increment suddenly started jumping to 100s instead of 1 depending on the following two things.
if it is 1205446 it is jumps to 1206306, if ...
-1
votes
1answer
39 views
Unknown column 'AG' in 'where clause
I'm getting this error the error(title) on such a simple query:
function getBranch($BranchID){
$query = "SELECT Branch FROM Branches WHERE BranchID = {$BranchID}";
$r = mysql_query($query);
if (!$r) ...
1
vote
0answers
70 views
Sort by date between two signified rows
I am trying to make a VBA code autosort data based on the data in the N column but I am stuck up on how to make it sort between two rows where the range may change. In other works I have two columns, ...
3
votes
1answer
197 views
How to use InsertOrReplace in BLToolkit.3
I start using BLToolkit and there is a new advantage: InsertOrReplace
When I try to use it there is an exception:
"InsertOrUpdate method does not support identity field 'Margin.id'"
My Model here:
...
1
vote
1answer
862 views
Reset autoincrement in Microsoft SQL Server 2008 R2
I created a primary key to be autoincrement.
I added two rows: ID=1, ID=2
I deleted these two rows.
I added a new row, but the new row's ID was: ID=3
How can I reset or restart the autoincrement ...
0
votes
1answer
63 views
Strategy for implementing a composite key of which the second part is rarely discriminating. Entity Framework Code First
I have the following scenario:
An Atom Entity is usually unique and can be stored in the database using a single AtomID field as its primary key.. In rare cases theAtomneeds to be split. In that ...
-2
votes
1answer
284 views
Auto Increment Always adds 1 to previous Row, Even when previous row has been dropped [duplicate]
Possible Duplicate:
Reset AutoIncrement in SqlServer after Delete
I'm having an annoying issue with an Identity auto-increment column value within an Sql Server 2008 database. When I delete ...
0
votes
2answers
130 views
SQL Server 2008 - Insert into table error “An explicit value for the identity column in table…”
I've created a temp table by just copying all data from an existing table. In the original table there is an identity column MemberNumber.
Every month, I need to find any new entries in the original ...
0
votes
1answer
158 views
Can I use IDENTITY_INSERT in a cursor on SQL Server 2008?
I have the following code:
declare c cursor for
select
id_user_V3
,device_type
,4
,notfication_mode
...
0
votes
1answer
295 views
Alternative to Identity column
we have Orders table with an identity column (OrderID) but our order number is composed by OrderType (2 chars), OrderYear (2 chars) and OrderID (6 chars), totally 10 chars (i.e. XX12123456).
This ...
1
vote
1answer
187 views
MySQL join 2 tables but rename columns because they have the same name
I have 2 tables,
admin, pricing
admin contains columns (id, date_created, type, value)
pricing contains columns (id, date_created, relation, value)
I want to do a select that joins the two tables ...
0
votes
0answers
99 views
Sql Server 2008 R2 - Copy range with new identities
Background:
I have a table (A) that has an int identity column which acts as the partitioning key to another table (B) that is being partitioned to handle large amounts of inserts while still ...
1
vote
3answers
275 views
insert command SQL server -identity Pkey autoincrement - column name by type , in “where condition”
i would like to alter a stored procedure so i will not suplly the identity column name
INSERT INTO tablName ..... WHERE IDENTITY_Column = 10
can i tell sql server managment studio to just refer to ...
0
votes
1answer
158 views
How does SQL Server generate values in an identity column?
My question is if I have two batch inserts into one table in parallel, how does SQL Server create identity values?
I mean, if in one session I insert multiple rows (Row1-Row2-Row3) and ...
3
votes
2answers
148 views
Update a Current table Column to an Identity Column [duplicate]
Possible Duplicate:
set identity on the column
I have a table let's say Messages with a column name Serno.
Serno keeps the serial number for each message.
However system is very old and ...
0
votes
2answers
89 views
MySQL: Getting ROWS of table B as COLUMNS in the result of the join with table A. A smarter / better way than this?
I did my homework and looked for information on the net and in StackOverflow but I did not find an answer to my question. I looked at:
Creating two colums from rows of a table (did not understand it)
...
0
votes
1answer
48 views
Multiple Inserts knowing the quantity
Let's supposed I Have a table with products like this
product | number
----------------------
aaaa | 2
bbbb | 3
cccc | 1
dddd | 4
It's a little more complex, but ...
3
votes
2answers
1k views
SQL Server 2012 scope_identity advise
I created a stored procedure in SQL Server 2012 and I have used scope_identity to get identity column's value but in my case I do not know is this correct or not please help
CREATE PROCEDURE ...
0
votes
2answers
343 views
SQL Identity column if no input value in insert query in ADO.NET throws exception that it can't be null
I have an identity column in the DB which is primary key and increments its value by itself. But I have a insert query in asp.net ado.net class like below:
cmd = new SqlCommand("insert into ...
0
votes
1answer
50 views
how to populate date from table1 to table2?
I am trying to populate the records from table1 to table2. table1 has three columns and no primary key. Table2 has three same columns with an identity column as a primary key. Following are my query ...
0
votes
2answers
288 views
The limit of Int32 for Identity Column
This is just a consideration for a site am creating and for other big sites out there.
I am using Identity Column to store the ID of some of my tables and I have classes whose Id are decorated with ...



