A primary key is a combination of columns which uniquely specify a row.
0
votes
1answer
23 views
Auto Increament a column based on Another column in Sql server 2005?
I have a two primary key Columns in a table. the second column based on first column. i show you the figures of them, see the splr_Slno is Based on the splr_Id.
i show you another figure for the ...
0
votes
1answer
17 views
jqgrid subgrid primary key
I have a question about how the subgrid links data.
I have two databases. One for subgrid and one for maingrid info.
For simplicity, both are like:
id Serial
1 1
2 2
3 40
As you can see the ...
1
vote
2answers
35 views
ReNumber Auto Increment column in SQL
Heres my problem.
I have an autoincrement primary key in sql table lets say table look like this
ID | Name|
1 John
2 Jack
3 Bill
4 Joe
Then i delete row 2 Jack
ID | Name|
...
0
votes
0answers
24 views
Primary key on subentity
I want to model the following with EF code first.
Imagine a car race, where multiple car classes compete in their own races.
A SubEvent is only for one CarClass, so each SubEvent is unique with it's ...
2
votes
2answers
29 views
Unique key can use as primary key then why we keep another primary key?
CREATE TABLE IF NOT EXISTS `tbl_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) COLLATE latin1_general_ci NOT NULL,
`passd` varchar(50) COLLATE latin1_general_ci NOT NULL,
...
0
votes
2answers
26 views
auto increment primary leaving gaps in counting
I have got a table with auto increment primary key. This table is meant to store millions of records and I don't need to delete anything for now. The problem is, when new rows are getting inserted, ...
2
votes
2answers
33 views
SQL Server : error creating table with multiple primary keys
Query is as follows:
create TABLE tbl_temp (
[ref] numeric(18),
[item_code] varchar(50),
[item_desc] nvarchar(150),
[Qty] smallint) PRIMARY KEY (ref, item_code))
Returning error:
Msg 156, ...
1
vote
2answers
36 views
Is there a keyword to identify a PRIMARY column in a MySQL WHERE clause?
I have a situation where the column name "field1" and "field3" are not given to me but all the other data is. The request is coming in via a url in like: /table1/1 or /table2/3 and it is assumed that ...
0
votes
0answers
9 views
Tradeoff about using primary key for MySQL 5.5 partitioning
Following query #1 works well:
CREATE TABLE `ex1` (
`id` INT(10) NOT NULL,
`written_time` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
`subject` VARCHAR(40) NOT NULL,
`writer` ...
0
votes
2answers
23 views
Getting “MySQL returned an empty result set” when doing ORDER BY of Primary Key [closed]
In phpMyAdmin, when I run the following query:
SELECT *
FROM `Table1`
It correctly lists all the rows in that table.
However, if I add an ORDER BY of the Primary Key col1 and run this query:
...
1
vote
1answer
21 views
apache derby: specifying an ID for a column “GENERATED BY DEFAULT AS IDENTITY”
The following sql statements for apache derby works fine:
connect 'jdbc:derby://uri';
create schema TEST02;
set schema TEST02 ;
create table T
(
id INT not null primary key GENERATED BY ...
0
votes
2answers
41 views
What data type is Guid in SQL server?
In other words, how is guid internally stored and compared by SQL (particularly MS SQL server 2008)? Is it a number or string? Also, is there a big performance hit when using guid as primary key? ...
0
votes
1answer
40 views
SQL primary key constraint although record does not exist
I am getting the following error:
Violation of PRIMARY KEY constraint 'PK_ss_student_grade'. Cannot insert duplicate key in object 'dbo.ss_student_grade'. The duplicate key value is (301, 1011, ...
1
vote
2answers
26 views
do we have to explicitly mention the not null constraint for a primary key?
Do we have to explicitly mention that a primary key shouldn't be null, when creating a table? Even if we don't mention the 'not null' constraint for the primary key, SQL wouldn't allow us to insert a ...
0
votes
1answer
17 views
MySql Cursor FETCH not returning Primary Key fields
I have a simple cursor that fetches the primary key of a table. Looking through the results, every value of the primary key column that is fetched is null. If I run the cursor's query as a ...
-1
votes
2answers
28 views
In Oracle, how would I begin to create the tables when all the needed tables have both foreign and primary key constraint?
In Oracle,
Lets say there are 3 tables with primary key and foreign key on each table. So, If i were to start creating the tables, how would i start. I started to create a first table with primary ...
1
vote
2answers
54 views
Update unique or primary keys in MySQL
I'm building a database management tool for a client to use on his own, and I'm having some problem dealing with the possibility of the update of primary/unique keys. So, given that the data for the ...
2
votes
1answer
21 views
Proper way to create composite PK
As far as i know, there are 2 ways of creating a composite PK, but dont know the differences or which is the good one:
CREATE TABLE AppUsers
(
Id int NOT NULL,
Username varchar(20) NOT NULL,
LastName ...
0
votes
2answers
41 views
Database Integrity on 3 Tables
I have 3 tables
Project : ProjectID (primary key)
Bugs: ProjectID, BugID (primary key)
BugLogs: BugID, BugLogID (primary key)
There are:
Multiple bugs on a project
Multiple bug logs on the bugs ...
0
votes
2answers
24 views
DataKeyNames for different tables with different primary key names
I'm wondering if there is a way to use datakeynames to access the primary keys of different tables if those primary key names are different in those tables.
For example, I have a table called Table1 ...
0
votes
1answer
54 views
Breeze using incorrect autoGeneratedKeyType in meta data parse
We're using BreezeJS for a project. It's a wonderful tool, thanks for creating it!
I have a table that has a two-column primary key. Also on this table is an identity column that is not part of the ...
1
vote
1answer
23 views
Setting 'Connect' property of table drops primary key. Why? (Access 2010)
I am working on an 'accdb' application. Most of my tables are linked to SQL Server 2008. I want to give the user an option to connect to a different database, so I'm providing a screen that does the ...
-1
votes
1answer
77 views
Primary key composed of two foreign keys? Oracle
I have a question regarding a table creation. I want to combine the attributes of "Ono" and "Pno" into a primary key for a new table. These are both foreign keys, each from different tables. Do I just ...
2
votes
1answer
26 views
How to create “averaged values” table in Excel using primary keys?
I have a huge Excel table that looks like this :
The names of the states are the primary keys. How can I create a new table that would show average prices across the states? It should contain 51 ...
0
votes
1answer
10 views
Best Practice for storing HistoryOfAllEvents and EventDetails
I'm new to database design and I'm trying to fix an existing mess.
I have a list of events (with columns of parameters for the events), and each event has another table of details for the event.
For ...
3
votes
2answers
42 views
MySQL index not being used as expected
What can I do to make mysql use the expected indices?
I've got 4 tables, two containing resources, and the others containing historical changes.
One pair uses indexes correctly, the other doesn't, ...
0
votes
1answer
50 views
Can Hibernate be used to lock a database table or row so that other programs can't access it?
I have batch program that gets a primary key value from a database table (Table_A). This batch program does some logic with this primary key value and then adds it to a new table (Table_B). I have a ...
1
vote
2answers
35 views
How to achieve unique auto-incremented id for rows across multiple tables?
I've got several tables in a database, let's say they're called table1, table 2, etc.
All tables have a primary key column 'id' with auto-increment.
In my current configuration it happens that when ...
0
votes
3answers
26 views
Oracle Referencing Primary Key
Primary key of parent got its value from sequence customerNo = customerSeq.nextval. How do I insert that value into child table as foreign key?
insert into account values ...
0
votes
1answer
30 views
Can I keep old keys linked to new keys when making a copy in SQL?
I am trying to copy a record in a table and change a few values with a stored procedure in SQL Server 2005. This is simple, but I also need to copy relationships in other tables with the new primary ...
0
votes
1answer
42 views
Referencing a composite primary key
I have two tables, with each table having a composite primary key.
One attribute is in both composite primary keys.
How am i supposed to reference the common attribute?? Do i just reference it as a ...
1
vote
3answers
34 views
Primary keys MySQL
I have seen it said that I should have a primary key for all tables in an SQL database. However, I've created a database with a number of tables that are just used for storing the ID of another ...
0
votes
2answers
30 views
FireBird: combine upper with primary key constraint
I want to use case insensivity in more tables which came from other DB where the fields and indexes can be case insensitive.
This means that we can search the needed row in any string format (DAta, ...
0
votes
1answer
22 views
Update multiple objects in Django 1.5 with formsets
How can I update multiple objects in Django 1.5 with formsets? I guess the url should be something like /4,7,8/update/ where 4, 7, and 8 are primary keys of the objects I want to update.
I guess ...
0
votes
1answer
36 views
Why can primary key column be empty in SQLite?
I have a table with only 1 primary column (nvarchar), as in the designer, it's marked as primary key and not allow nulls. But by somehow, there is a row in that table with the key value being empty, ...
0
votes
1answer
46 views
insert query with varchar as data type for primary key
The program is not accepting the query given below-
public class loginDaos {
public void create(loginBean bean) {
ConnectionPool c = ConnectionPool.getInstance();
...
0
votes
2answers
25 views
I want id to start from 0,but starts from 1
I just want my mysql table id(primary key) to start from 0..
As I have seen, I used ALTER TABLE yourtable AUTO_INCREMENT =0 but it starts from 1..What is that I need to do?
Edit1
I also emptied my ...
1
vote
1answer
52 views
Get all employee who directly or indirectly reports to an employee, with hierarchy level no
I have a Employee table like
emp_id bigint,
reports_to bigint,
emp_name varchar(20),
Constraint [PK_Emp] Primary key (emp_id),
Constraint [FK_Emp] Foreign key (reports_to) references ...
0
votes
0answers
25 views
How to rename a field which belongs to a clustered index in MS SQL Azure?
I have a table:
CREATE TABLE [dbo].[BrandedResources]
(
[EntityId] [uniqueidentifier] NOT NULL,
[Name] [xml] NOT NULL,
[ExternalId] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
...
-1
votes
1answer
36 views
How to retrieve generated primary key when row was inserted with QSqlTableModel::insertRecord
This question pertains to Qt 4.7.3 on Windows with Postgres.
I'm trying to insert a row into a pretty large table via QSqlTableModel, because this (hopefully) saves me the trouble of typing out the ...
0
votes
1answer
53 views
SQL Query - If discriminator in table equals something, change column content in another table to equal PK
Say I have two tables(TableA and TableB)
TableA has an Id (primary key) and a discriminator with a certain value (eg. "stuff")
TableB has an id column which is essentially a foreign key of TableA id ...
3
votes
3answers
101 views
C# generate Guid that is unique(does not exist in a table in the database)
I have a table where the primary key is of type Guid. In my MVC application, I want to add a record to this table. I know of the Guid.newGuid() that creates a new Guid. This workds well but I have a ...
0
votes
1answer
25 views
How can I create a table with five foreign keys and one of them as primary key (which is also a VARCHAR)
I am trying to create a table like,
USE [labblyDabbly3455]
GO
CREATE TABLE [dbo].[daTableBang]
(
TableAID varchar FOREIGN KEY REFERENCES TableA(ID)
TableATitle VarChar ...
1
vote
1answer
43 views
PK on table with (simulated) polymorphic association
I am trying to set up the right indices on a table I have just created which contains 4 "polymorphic associations" and a PK ID. The 4 associations allow me not to have to quadruple the number of ...
1
vote
1answer
26 views
MYSQL error in creating foreign key constraint
I am using MySQL to create a small database. and facing some issues in foreign keys and primary key. I really don't understand as it seems a simple problem.
CREATE TABLE IF NOT EXISTS ...
0
votes
2answers
45 views
how to prevent duplicate records in database
Question:
How do I prevent two different admin users of a website from creating a customer record with the same customer id.
Background information:
The website I'm working with autogenerates a ...
0
votes
0answers
55 views
Hierarchical Primary Index in SQL Table
I would like to construct a sql table that identifies people using two fields A and B. It is a hierarchical relationship, so the B's always belong to some kind of A.
When creating my table, should ...
0
votes
1answer
11 views
How to change primary from one attribute to another. mysql
I have a database in which I have declared a primary key. Later on in implementing the database, I realized that I will have to create an auto-incrementing surrogate key and switch my current primary ...
0
votes
5answers
42 views
Username or Userid
I've seen many discussion whether is better to use userid or username as primary key for a table. userid would allow for the flexibility of later changing username if desired. Also is a way to ...
0
votes
1answer
42 views
Assigning String as Google App Engine Entity Key
I searched a lot. Still I am not able to understand how to assign a String to Google App Engine Entity class id(Key).
So I have:
Key id;
And
setId(String id) {
// I know that here I can ...




