Tagged Questions
The pk tag has no wiki summary.
4
votes
5answers
1k views
Remove pk field from django serialized objects
I'm serializing a bunch of objects with:
json = serializers.serialize("json", objects, fields=('name', 'country'))
I have not included 'pk' in my fields list, but the produced JSON includes a ...
3
votes
2answers
2k views
Hibernate one-to-one entity association with shared PK between 3 classes
I want a unidirectional one-to-one relationship between objects of 3 java classes: Person to Heart, and Person to Liver. I want the objects to share the same PK i.e. every person has a corresponding ...
2
votes
1answer
254 views
Getting ID of newly created object in save()
I want to save an object, so that the M2M get saved. Then I want to read out the M2M fields to do some calculations and set a field on the saved object.
class Item(models.Model):
name = ...
2
votes
2answers
859 views
What's the purpose of sequental uniqueidentifier in PK of MS SQL?
I know that primary keys based on Guids do not have the best performance (due to the fragmentation), but they are globally unique and allow replication scenarios.
Integral identifiers, on the other ...
1
vote
3answers
86 views
SQL Server: Auto increment char pk
Is it possible to have a char primary key on a table? For example 'WC001' then will it automatically increment by 1, so the next record for the pk will be 'WC002' and so on.
Can anyone provide me ...
1
vote
2answers
144 views
Does DB2 CURRENT TIMESTAMP on z/OS return unique values?
We have a DB2 running on z/OS and some tables use a timestamp as a Primary Key.
My opinion is, that it might be possible that two transactions calling CURRENT TIMESTAMP in the same nanosecond can ...
1
vote
1answer
82 views
creating a table in SQL, and taking advantage of metadata
to homework, asking me to make a table of a DB, the table corresponds to a branch of a department store, this table must contain the following information:
CREATE TABLE STORE
(
id_store varchar ...
1
vote
4answers
623 views
Change huge table PK column data type
Now that we've ran out of int capacity on a PK column (which is an IDENTITY) I'd like to do this to bigint, but simple ALTER TABLE seems to be unable to handle that big of a table. So my question is: ...
0
votes
1answer
36 views
Changing the primary key on a referenced table
I would like to know if there is an "easy" way of changing the primary key that is an UUID of 36 characters for an autoincrement column. The problem is that this table is referenced by at least ...
0
votes
2answers
493 views
Problem with inserting into android sqlite3 table that has composite primary key
I have a table with a composite primary key and I am having trouble inserting. The code used to create the table is:
CREATE TABLE ClassEvent (
EventName varchar(10) NOT NULL,
CourseId ...
0
votes
4answers
299 views
SQL Primary key sort order
I am using MS SQL server 2005
I have a table with 3 columns where I store user-message mapping like:
msg_for msg_from msg_id
bob bob 1
bob john 1
bob steve 1
bob bob ...
0
votes
1answer
116 views
django blog - post- reply system display replies
I have a mini blog app, and a reply system. I want to list all mini blog entries, and their replies, if there are any.
i have in views.py
def profile_view(request, id):
u = ...
0
votes
1answer
635 views
Nhibernate Guid with PK MySQL
I've got a question. I use NHibernate with MySql. At my entities I use Id(PK) for my business-logic usage and Guid(for replication). So my BaseDomain:
public class BaseDomain
{
public virtual ...