Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
4k views

SQL Server - SCOPE_IDENTITY() for GUIDs?

Can anyone tell me if there is an equivalent of SCOPE_IDENTITY() when using GUIDs as a primary key in SQL Server? I don't want to create the GUID first and save as a variable as we're using ...
11
votes
4answers
2k views

Why does select SCOPE_IDENTITY() return a decimal instead of an integer?

So I have a table with an identity column as the primary key, so it is an integer. So, why does SCOPE_IDENTITY() always return a decimal value instead of an int to my C# application? This is really ...
6
votes
6answers
695 views

SQL Server INSERT, Scope_Identity() and physical writing to disc

I have a stored procedure that does, among other stuff, some inserts in different table inside a loop. See the example below for clearer understanding: INSERT INTO T1 VALUES ('something') SET @MyID ...
3
votes
3answers
2k views

asp.net InsertCommand to return latest insert ID

I'm unable to retrieve the latest inserted id from my SQL Server 2000 db using a typed dataset in asp.NET I have created a tableadapter and I ticked the "Refresh datatable" and "Generate Insert, ...
3
votes
2answers
850 views

How do I cast Scope_Identity() to Int?

So Scope_Identity() returns an ?-Byte Numeric Type in SQL Server. That is not awesome. Is there a safe way to cast it to an int in a select query so we don't have to manage every whim of SQL ...
2
votes
1answer
240 views

How to use scope identity in SQL Command?

My concept for using the scope identity is given below. What is the proper way to use the scope identity that support my concept? For single data: Imports System.Data.SqlClient Public Class Class1 ...
2
votes
3answers
369 views

Inserting into Oracle and retrieving the generated sequence ID

I have a handful of raw SQL queries for SQL Server which use SCOPE_IDENTITY to retrieve the generated ID for a specific INSERT immediately after that INSERT occurs all in one execution… INSERT into ...
2
votes
1answer
321 views

Is there a way to bulk insert into two tables with FK from one to the other?

I'll give a pseudocode example of my current method and if anyone knows of a method that doesn't work one row at a time, I'd be quite appreciative. I'm using MS SQLServer 2008 define cursor for the ...
1
vote
2answers
24 views

How to get Identity value whith help of scope_identity()

I would be grateful if you could help me to solve the problem. I have scope_identity() that implemented in TRIGGER. ALTER TRIGGER TempProcTrig ON Table_temp2 AFTER insert AS BEGIN declare ...
1
vote
2answers
27 views

Trying to pass recent ID with scope_identity, and its error me : Specified cast is not valid

Im trying to pass the recent ID that I just insert with Scope_Identity, and its giving me some weird stuff. it says : : Specified cast is not valid and refering to the line : int ...
1
vote
3answers
182 views

nextval and curval confusion in PostgreSQL

What will happen if multiple user run the following query at the same time? INSERT INTO "Retail"."Attributes"("AttributeId","AttributeCode","AttributeName") ...
1
vote
1answer
257 views

NHibernate: Insert entity with identity value set on a different column

Is it possible with NHibernate and Sql Server to insert an entity and set one of the column values to the newly generated identity? In pure sql I can do it by adding the default value Create the ...
1
vote
1answer
334 views

WCF Service Discovery Scope

Scenario: I have several services that I want to be discovered by different clients. Executing the discovery is working perfectly. But now I have different versions of those services for different ...
1
vote
3answers
767 views

T-SQL: returning the new INSERT identity to C#

i'm putting values into SQL Server using a Stored Procedure. The Procedure will add an ID to the row that is added. I need to get this ID back to my code. Currently I can get the I see the output id ...
1
vote
2answers
560 views

Getting SCOPE_IDENTITY from SQL Server on Insert

I guess it is too late and I'm too tired to see what I'm doing wrong. Here is what I'm trying: int imageId = imageDal.AddImage(new SqlParameter[] { new SqlParameter("@IMAGE_ID", ...
1
vote
1answer
65 views

Is it possible to use two SCOPE_IDENTITY calls in the same procedure?

The way I want my stored procedure to work is this, the user passes all of the customer data, name, phone, and all of address info into the procedure, then I want to perform an insert into the address ...
1
vote
3answers
776 views

What data type does the SQLCommand method ExecuteScalar() return?

In SQL Server, ID is a not null integer, and an identity. When I run the following code, I get an InvalidCastException on the last line: SqlCommand cmd = new SqlCommand(); cmd.Connection = _conn; ...
1
vote
4answers
197 views

SQL Server: How do I get the value for the row I inserted?

My SQL Server table has, between other, these columns. AutoID which has IdentitySpecification set to True and GuidKey which has the default value of (newid()) AutoID GuidKey 1 f4rc-erdd 2 ...
1
vote
3answers
1k views

Retrieve the last id from the SQL Server database table

How do I get the last id created in the policy table and store it into a variable so that I can use it for another table called backupspec table. System.Data.SqlClient.SqlConnection dataConnection = ...
1
vote
2answers
337 views

ASP Classic and SQL Server 2008 giving strange response

Started getting this error it seems since we upgraded to SQL Server 2008. When inserting into the db and then returning the identity i get a 'Item cannot be found in the collection corresponding to ...
0
votes
4answers
111 views

Select identity after an unsuccessful insert because of a duplicate

Say I have an MS SQL Server table with a primary key ID and a unique key Name. Also, IGNORE_DUP_KEY is set for Name. What I want to do is to insert a name and then get its ID, regardless of the ...
0
votes
2answers
176 views

How to return the last primary key inserted

I ask about alternative or similar query in informix to perform the following: INSERT INTO days (depcode,studycode,batchnum) values (1,2,3);SELECT SCOPE_IDENTITY(); I want a query to return the ...
0
votes
1answer
56 views

SQL Get id value and insert into another column

I am attempting to create an sql statement that will insert an inital record, retrieve the new id (a autonumber primary key) and insert that into another column in the table to serve as a defualt ...
0
votes
3answers
99 views

SQL Server Scope_Identity() Usage Problem

I can't figure out why this multi-table insert (stored procedure) using scope_identity() is not working. This is the gist of it (forgive the unimaginative naming here, please): TableB's RowID ...
0
votes
3answers
264 views

using scope_Identity to get id to store in session variable

I need some help with my code. How can I get the scope_Identiy to store the ImageId as a session variable. I have been stuck on this for ages but I just cant get it to work. edit: I believe that ...
0
votes
1answer
276 views

Rails3, Authlogic and authenticates_many HOW TO code current_account_session helper method?

Startup info: My system don't user subdomains to get the right account! I use Rails 3.0.x I use authlogic 2.1.6 Model Account and model User The cookie is present with name e.g. ...
0
votes
3answers
61 views

Get ID In Bulk inserting

I am inserting SQL table data through XML file <root> <Attributedata> <AttributeLabelID>-1</AttributeLabelID> <ProductID>1</ProductID> ...
0
votes
1answer
270 views

Get scope_identity returned value

How can i get the scope identity parameter in my vb code. I have this so far.... InsertCommand="INSERT INTO [table_name] ([title], [subtitle], [description], [image1], [image1_caption], [image2], ...
0
votes
4answers
78 views

how to get item data immediately after inserting

I have a form that allows users to insert items in the database. I call Scope_Identity() to get last identity value inserted. This works ok. When inserting the item a passowrd is randomly generated ...
0
votes
2answers
258 views

Need some t-sql clarification

This is a follow up to my previous question, in t-sql SELECT SCOPE_IDENTITY() returns a BIGINT, I did the following to get it to return an INT: DECLARE @X INT INSERT ... SELECT @X = ...