Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
6answers
7k views

Python “is” operator behaves unexpectedly with integers

Why does the following behave unexpectedly in Python? >>> a = 256 >>> b = 256 >>> a is b True # this is an expected result >>> a = 257 >>> b = ...
37
votes
5answers
948 views

How can a non-assigned string in Python have an address in memory?

Can someone explain this to me? So I've been playing with the id() command in python and came across this: >>> id('cat') 5181152 >>> a = 'cat' >>> b = 'cat' >>> ...
37
votes
11answers
2k views

Database-wide unique-yet-simple identifiers in SQL Server

First, I'm aware of this question, and the suggestion (using GUID) doesn't apply in my situation. I want simple UIDs so that my users can easily communicate this information over the phone : ...
34
votes
2answers
1k views

Why “is” keyword has different behavior when there is dot in the string?

>>> x = "google" >>> x is "google" True >>> x = "google.com" >>> x is "google.com" False >>> Can someone give me some hints why its like that? Edit: to ...
31
votes
7answers
3k views

The JPA hashCode() / equals() dilemma

There have been some discussions here about JPA entities and which hashCode() / equals() implementation should be used for JPA entity classes. Most of them if not all depend on Hibernate, but I'd like ...
24
votes
7answers
1k views

Python: Why is (“hello” is “hello”)?

Why is "hello" is "hello" == True in Python? I read the following here: "If two string literals are equal, they have been put to same memory location. A string is an immutable entity. No harm can ...
23
votes
8answers
17k views

ADO.NET Entity Framework and identity columns

Is the Entity Framework aware of identity columns? I am using SQL Server 2005 Express Edition and have several tables where the primary key is an identity column. when I use these tables to create ...
21
votes
7answers
18k views

T-SQL: @@IDENTITY, SCOPE_IDENTITY(), OUTPUT and other methods of retrieving last identity

I have seen various methods used when retrieving the value of a primary key identity field after insert. declare @t table ( id int identity primary key, somecol datetime default getdate() ) ...
20
votes
1answer
320 views

What is the difference between “a is b” and “id(a) == id(b)” in Python?

The id() inbuilt function gives... an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime. The is operator, instead, gives... object ...
18
votes
3answers
3k views

How to insert into a table with just one IDENTITY column

(Came up with this question in the course of trying to answer this other one) Consider the following MS-SQL table, called GroupTable: GroupID ------- 1 2 3 where GroupID is the primary ...
16
votes
5answers
3k views

How do I reset an increment identity's starting value in SQL Server

I would like to have a nice template for doing this in development.
15
votes
7answers
31k views

How to change identity column values programmatically?

I have a MS SQL 2005 database with a table Test with column ID. ID is a identity column. I have rows in this table and all of them have their corresponding ID autoincremented value. Now I would like ...
14
votes
5answers
298 views

What is the practical use of the identity function in R?

Base R defines an identity function, a trivial identity function returning its argument (quoting from ?identity). It is defined as : identity <- function (x){x} Why would such a trivial ...
13
votes
4answers
200 views

Python “in” does not check for type?

>>> False in [0] True >>> type(False) == type(0) False The reason I stumbled upon this: For my unit-testing I created lists of valid and invalid example values for each of my ...
13
votes
4answers
6k views

How do I add the identity property to an existing column in SQL Server

In SQL Server (in my case, 2005) how can I add the identity property to an existing table coulumn using t-sql? something like: alter table tblFoo alter column bar identity(1,1)
12
votes
2answers
7k views

Convert a username to a SID string in C#/.NET

There's a question about converting from a SID to an account name; there isn't one for the other way around. How do you convert a username to a SID string, for example, to find out which HKEY_USERS ...
12
votes
5answers
4k views

Primary key from inserted row jdbc?

Is there a cross database platform way to get the primary key of the record you have just inserted? I noted that this answer says that you can get it by Calling SELECT LAST_INSERT_ID() and I think ...
11
votes
3answers
534 views

Does Java guarantee that Object.getClass() == Object.getClass()?

I really do mean identity-equality here. For example, will the following always print true. System.out.println("foo".getClass() == "fum".getClass()); Thanks in advance, ~Mack
11
votes
2answers
680 views

Does serialization preserve object identity?

I am using the Java Serializable interface and the ObjectOutputStream to serialize objects (until now, this method has been sufficient for my purposes). My API relies on object identity for some ...
10
votes
3answers
591 views

How should I handle user identity for a Window Phone / WCF / ASP.NET MVC application?

I'm working on an application which allows data entry and display from both a Windows Phone application and an MVC 3 web interface. Data access for the phone client is via authenticated WCF services ...
10
votes
3answers
161 views

Why is `C.m is C.m` false?

The Python docs about the is operator: The operators is and is not test for object identity: x is y is true if and only if x and y are the same object. x is not y yields the inverse truth ...
10
votes
5answers
290 views

Python Identity Problem: Multiple Personality Disorder. Need Code Shrink

I stumbled upon the following python weirdity: >>> two = 2 >>> ii = 2 >>> id(two) == id(ii) True >>> [id(i) for i in [42,42,42,42]] [10084276, 10084276, 10084276, ...
9
votes
2answers
716 views

Is there a practical way of migrating from identity columns to hilo keys?

I work with a database that depends heavily on identity columns. However as we have now moved all applications over to NHibernate I wanted to look into using HiLo as seems to be recommended with ...
8
votes
2answers
3k views

How do I implement custom Principal and Identity in ASP.NET MVC?

I want to store extra information in the authenticated user so that I can have it easily accessible (like User.Identity.Id, for example), instead of just the name, since I'm planning on having that ...
8
votes
5answers
552 views

SQL Server identity issue

I have a query like below declare @str_CustomerID int Insert into IMDECONP38.[Customer].dbo.CustomerMaster ( CustomerName , CustomerAddress , CustomerEmail , CustomerPhone ) values ( ‘werw12e’ , ...
8
votes
3answers
5k views

How do you find the users name/Identity in C#

I need to programatically find the users name using C#. Specifically, I want to get the system/network user attached to the current process. I'm writing a web application that uses windows integrated ...
7
votes
4answers
320 views

Why does id({}) == id({}) and id([]) == id([]) in CPython?

Why does CPython (no clue about other Python implementations) have the following behavior? tuple1 = () tuple2 = () ...
7
votes
5answers
3k views

SQL Server Reset Identity Increment for all tables

Basically I need to reset Identity Increment for all tables to its original. Here I tried some code, but it fails. http://pastebin.com/KSyvtK5b actual code from link: USE World00_Character GO -- ...
7
votes
7answers
2k views

What is the difference between Scope_Identity(), Identity(), @@Identity, and Ident_Current?

I know Scope_Identity(), Identity(), @@Identity, and Ident_Current all get the value of the identity column, but i would love to know the difference. Part of the controversy i'm having is what do ...
7
votes
4answers
1k views

Auto-increment on Azure Table Storage

I am currently developing an application for Azure Table Storage. In that application I have table which will have relatively few inserts (a couple of thousand/day) and the primary key of these ...
7
votes
4answers
3k views

Getting new IDs after insert in SQL Server 2008

I'm inserting a bunch of new rows into a table which is defined as follows: CREATE TABLE [sometable]( [id] [int] IDENTITY(1,1) NOT NULL, [someval] sometype NOT NULL ) using the following ...
6
votes
3answers
124 views

Managing identity/primary key across servers

I'm in the middle of designing a new database that will need to support replication and I'm stuck on the decision what to choose as my primary key. In our current database for primary key we use two ...
6
votes
3answers
104 views

The misbehaving Identity

Execute the following script that creates and populates a table into your dev database. SET NOCOUNT ON Drop Table dbo.Region GO CREATE TABLE dbo.Region( RegionId int ...
6
votes
4answers
2k views

how to set auto increment after creating a table without any data loss?

I have a table 'table1' in SQL server 2008 and it has 1000's of record. Now I want the primary key (table1_Sno) column to make a auto-increment column. Can this be done without any data transfer or ...
6
votes
2answers
976 views

XCode4 Building Problem - Code Signing Identity Ad Hoc missing

trying to build an ad hoc distribution with Xcode 4. Consider that my project.xcodeproj was created with a very old version of Xcode. Now Looking around at Build Setting I cannot find Code Signing ...
6
votes
2answers
187 views

Strange result in python

Could someone explain me this strange result on python 2.6.6 ? >>> a = "xx" >>> b = "xx" >>> a.__hash__() == b.__hash__() True >>> a is b True # ok.. was just to ...
6
votes
5answers
158 views

Can one control the identity of objects in Java, and if so, how?

This is a trivial programming question. I am not an expert in Java. Say I use objects of custom classes Company and Employee, in a manner similar to what many RDBMS examples do: class Employee { ...
6
votes
1answer
2k views

How can I retrieve a Windows Computer's SID using WMI?

I'm not looking for User SIDs. I'm looking for the computer SID, which active directory would use to uniquely identify the computer. I also don't want to query the active directory server, i want to ...
6
votes
6answers
698 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 ...
6
votes
3answers
2k views

DDD, value objects and ORM

Value objects got no identity. ORM needs identity to update database. How to trick ORM? (marking Id for value object as internal won't work, cause ORM lives in different assembly and moving it ...
6
votes
4answers
4k views

SQL server identity column values start at 0 instead of 1

I've got a strange situation with some tables in my database starting its IDs from 0, even though TABLE CREATE has IDENTITY(1,1). This is so for some tables, but not for others. It has worked until ...
6
votes
3answers
348 views

Can I use a SQL Server identity column to determine the inserted order of rows?

I need to be able to determine the order which rows have been inserted into a table (there are no updates). Can I use an identity column to do this? I know that there may be gaps, but are the values ...
6
votes
1answer
6k views

How do I MANUALLY set an Identity field in LINQ-To-SQL (IDENTITY INSERT)

I have a table that normally, upon insert, the auto-key will increment. But, there are some instances when we want to set the ID (as would easily be done with "IDENTITY INSERT" in SQL). Is there a ...
5
votes
2answers
189 views

IDENTITY NOT NULL at Table Creation

Can anyone please tell me whether the instruction IDENTITY NOT NULL at a table creation is redundant or not? I mean, judging by the message DEFAULT or NULL are not allowed as explicit identity ...
5
votes
1answer
409 views

What is the recommended identity generation approach in Entity framework?

I am interested in what is the most performant way for StoreGeneratedPattern. In past I was used to let the DB generate the ID for me but I was wondering if there is any advantage in setting ...
5
votes
1answer
1k views

How does Hibernate detect dirty state of an entity object?

Is it using some kind of byte codes modification to the original classes? Or, maybe Hibernate get the dirty state by compare the given object with previously persisted version? I'm having a problem ...
5
votes
1answer
442 views

App Domain Level Impersonation

I am developing an application that needs to load plug-ins into separate child app domains. Only one plug-in is loaded into one child app domain. Each plug-in requires different Windows identity and ...
5
votes
2answers
587 views

TSQL: Create a Custom Identity off a Custom Identity? (Managing Database Revisions)

I would like to create a custom identity based off an custom identity. Or perhaps something similar to an identity that functions like an auto-incrementing key. For example if I have an primary key ...
5
votes
3answers
11k views

Where is the Microsoft.IdentityModel dll

I have installed the Windows Identity Foundation but can't find the Microsoft.IdentityModel dll. According to the Azure Hands-on-Labs it should just be in Add Reference in VS2010. However it's not ...
5
votes
2answers
3k views

Oracle: how to create an identity column?

What is the magical incantation to create an identity column in Oracle?

1 2 3 4 5 10