0
votes
1answer
45 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 ...
3
votes
3answers
94 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 ...
1
vote
2answers
54 views

how to make my primary key in MySQL database Works for lower and higher case?

I wanna make database which has table contains username and password. and I want to make username primary key , to prevent duplication. when I tried to make that , For Example : 1-Admin 2-admin ...
3
votes
2answers
65 views

Can a primary key default be NULL? Why is it described as such?

I have a table that when I describe it is: mysql> DESC my_table; +------------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | ...
-1
votes
1answer
60 views

Airline database prototype

I am designing an airline database( the outline of one anyway) for an assignment and seem to be running around in circles. Three tables are concerned. Customer Booking_Reference Flight ...
-2
votes
2answers
24 views

Return newest row added in MySQL

I was wondering what the code would look like to go into a table and then get the primary key in the last row that was added to the table. How would you go across doing that I do not have a ...
0
votes
1answer
67 views

Creating a new table that connects to the primary key of previous table in mySQL

Currently I have 1 table in a mySQL Database that i want to connect to another table I need to create. The second table is just going to have 2 columns, the member_id and product column. There is to ...
0
votes
2answers
98 views

Cardinality between entities

I'm learning for a test at school from database systems, and I'havent found similar example on the Internet and I'm not sure. What is the cardinality of following relationship ? I would say 1:1. ...
0
votes
1answer
76 views

Cant remove index or rename table PHPmyadmin

I'm trying to create a basic university database outline for an assignment using phpmyadmin. In one of my tables i named a primary key "Student ID". Now when doing queries i get an error,stating ...
2
votes
2answers
74 views

Automatically remove gaps in primary key sequence

I am creating a webpage. This webpage stores data into a MySQL database based on the users actions. The database has many rows. The primary key of the row is the column rowID and it just numbers the ...
0
votes
1answer
52 views

JOIN mutiple tables in SQL SERVER

I have like above Logical ERD. I'm alright with it BUT I can't understand how to display the correct information. For example: Need to lists groups and the members belonging to each group. For ...
1
vote
3answers
54 views

Database: big amount of foreign keys

I have a mysql database about a gps system. It has about 70 tables. One of the tables is called vehicles which has only one column containing the vehicles' ids and it is a primary key. The rest of ...
5
votes
1answer
133 views

Mapping a primary key as foreign key in database

I have a logical problem in my database design. I have got a table with 2 field, one of the integer field is the primary key and it acts as foreign key in all other tables. The table structure is ...
0
votes
1answer
49 views

How to establish a distinct relationship between user and his contacts in a table

Please help me solve this problem I am trying to create a relationship table in sql but the challenge I am facing is If there are 3 users, u1, u2, u3 in user_table create table user_tab (user_id ...
1
vote
1answer
125 views

check database design for a blog application

I am creating a blog application - where multiple users can publish, share and like blogs. I've created an outline of the database but I am not sure if its the right way. I do not understand how to ...
0
votes
1answer
113 views

Ms Access Relationship between subform and form

I am beginner with Ms Access and databases I am building meeting management database. I am stuck at some point please help Database purpose is to manage meetings with different firms which are in ...
0
votes
2answers
31 views

There is at least one case were a null primary key is needed. How to treat this particular case?

I've a table SCHOOL_PARENT and a table SCHOOL_CHILD. The SCHOOL_CHILD table contains an id for the child and an id for the parent, that togheter forms the primary key. This is because a child can have ...
1
vote
2answers
55 views

Should primary key be used on a table that has only 2 columns, both are unique

If I have a table like the Following CustomerAddress(CustomerId, AddressId) Would I still need an additional primary key, e.g., int auto increment? Or would setting both the columns as primary keys ...
1
vote
2answers
48 views

Tracking changes in data with no primary key

I am writing an application that uses CC-CEDICT, a CC licensed Chinese-English dictionary. The dictionary is available only as a zipped text file (4MB) with entries in the following format: ...
2
votes
1answer
44 views

5 Field Composite PK vs Surrogate PK

I need to create a database that will be used by a zoo to keep track of their animals and employees etc. The only thing I need help with is the Service table which will be used to record services ...
0
votes
0answers
79 views

automatically reassign the value of primary key in a MySql table after the record for that key is deleted

I am using MySql in phpMyadmin. I have a table which contains a primary key. This primary key is the 'userid' and it is also an "auto increment" field. The application also has a functionality of ...
0
votes
3answers
82 views

Can I share a parent table's primary key as a foreign key between two or more child tables?

I have a database named tv_shows which is structured as: tv_shows(tv_show_id, tv_show_title, tv_show_desc, network, status) seasons(season_id, tv_show_id, season_no, season desc) ...
2
votes
2answers
84 views

Phone Database Primary Key Issue

I'm designing a database to hold phones, SIM cards, phone-SIM pairings, and a history of phone-SIM pairings. One phone can only be paired to one SIM card at one time. My issue is trying to think of a ...
0
votes
1answer
76 views

Guid(Random ints) vs regular int primary key for chat application

I am not asking a general "guid vs ints which is better" question. I know that, or atleast think I know that they both have specific scenarios where one is better than the other. But I do have a ...
0
votes
1answer
162 views

Handle primary key - foreign key tables insertion?

Suppose I have two tables (primary key -> foreign key) where one record in primary key table corresponds to many record in foreign key, so if I want to make insert page (using ASP.NET for instance) ...
1
vote
3answers
1k views

Adding column with primary key in existing table

I am trying to add primary key to newly added column in existing table name Product_Details. New Column added: Product_Detail_ID (int and not null) I am trying add primary key to Product_Detail_ID ...
3
votes
3answers
240 views

Removing Duplicate Entries in MySQL Database without a primary Key

I've received a reasonably big MySQL database with a lot of duplicates. Around a third of the database are duplicates. It is also missing a primary key. The structure of the database is so: ...
2
votes
2answers
468 views

Superkey vs Primary Key

I'm having issues understanding super keys in a relation when the relation only contains one functional dependency. When considering a relation R(A,B,C,D,E) where A is the primary key and with the ...
0
votes
0answers
30 views

Display only Index that are not Primary or Foreign Key from a Mysql Table

i have a question. is there a way to display only the indexes from an table that are not primary or foreign key. something like describe table or show indexes. since foreign keys are indexes as well ...
0
votes
1answer
94 views

How to find something that does not exist in another table?

I'm in desperate need of some help here. My problem is this: There are two tables in my database, tblSubmission and tblStudent. tblStudent is linked with tblSubmission by the student_id key. Some of ...
0
votes
1answer
101 views

How to get auto-incremented keys using JDBC and Microsoft Access?

I'm writing a computer program using Java (JDBC) and I'm having trouble getting auto-incremented keys from my Microsoft Access database. Currently I have three instances of Connection, Statement and ...
0
votes
0answers
40 views

Oracle Primary Key generation using the Entity Framework [duplicate]

Possible Duplicate: How to create id with AUTO_INCREMENT on Oracle? I am creating my first application that uses the Entity Framework to access data in an Oracle Database. The Database ...
1
vote
2answers
274 views

Prevent null values are getting inserted into the table for primary key column

I don't know whether it is problem with the database or what. For all the tables in my database, for the columns which are declared as primary key are taking NULL values or default values when query ...
1
vote
2answers
44 views

Key values in database

Can the primary keys in database be multi-valued ? For eg if the student has multiple bank accounts numbers can we we use this attribute as key ?
0
votes
1answer
68 views

Inserting and updating, deleting in DB

I had a ticket request with me and i am not knowing how to handle. Let me explain the whole scenario in a clear manner. In my database I have the primary key as firstCode which is six digit long ex: ...
-3
votes
1answer
43 views

Is inner join performed by default? [closed]

I wonder why it is needed to put the (primary key = foreign key) in a where statement. Tables are related to each other via such criteria. So, why everybody use that in the where clauses or *join*s? ...
0
votes
1answer
91 views

Primary key in an association table

Let' s say there is a small database with tables Person(ID, Name) and Product(ID, Name, Color). ID column is obviously the Primary key of each table. I want as usual to add an association Many-to-Many ...
3
votes
1answer
112 views

Default primary key setting increases value by two

I have just created a database in Visual Studio using a C# Forms application. I have a number of columns, column A being the primary key. I have just entered data into the row, and have noticed ...
0
votes
2answers
123 views

normalization of database

I would like to ask about a question relating to normalization. I have 2 PKs, VIN and Reg_no. VIN is the Vehicle ID Number and Registration number is the car plate number. I have an attribute called ...
1
vote
1answer
272 views

Misconception of what superkey or Boyce Codd Normal form is

At 9:34 in this video the speaker says that all 3 functional dependencies are in Boyce Codd Normal Form. I don't believe it because clearly GPA can't determine the SSN, sName, address and all other ...
0
votes
3answers
51 views

Need some modification in my code

This is a small part of the application where user can register any number of employees and employee id is generated by using a while loop....As i close the application & start filling the data ...
0
votes
2answers
596 views

Can I have a primary key and a separate clustered index together?

Let's assume I already have a primary key, which makes sure uniqueness. My primary key is also ordering index for the records. However, I am curious about the primary key's task in physical order of ...
-5
votes
1answer
101 views

What is the PK and FK i should assign to my table?

A company provides transport services to high-ranked staffs. There are 3 tables: DRIVERS, VEHICLES, STAFFS. DRIVERS - license number [PK] - name - language spoken - ... (and so on..) VEHICLES - ...
-1
votes
1answer
65 views

Which attribute to use as the PK?

I have a table called Vehicles. And this table has 8 attributes: Vehicle ID Registration No Make (Honda, Ford, etc..) Model Colour number of passengers odometer's current reading features Should ...
1
vote
2answers
110 views

RDBMS keys confusion

I have some confuse about candidate key, primary key, mininal superkey. By definition: Primary key: only 1 attribute , so it must be minimal superkey and it's also a candidate key(because its minial ...
0
votes
3answers
468 views

Connecting html form to php page according to primary key

Ok so essentially what I'm trying to do is add a q&a component to my website (first website, so my current php knowledge is minimal). I have the html page where the user's input is recorded, and ...
0
votes
1answer
105 views

Choice of Primary Key and unexpected behaviour of Auto Increment in mysql

Hi I'm making an event management site. The users (each having a unique login id) from all over the world can add events. The events are stored in a temporary table and when approved by admin are ...
2
votes
1answer
185 views

Why is a primary key index an additional structure?

I am reading that RDMS stores table data on disk in some form of B-tree, and also that table indexes are stored in the B-tree form. I read that primary key index is created automatically for a ...
0
votes
4answers
452 views

Auto-increment vs composite key

I have an additional question related to post: Composite primary keys in databases Please check out the post over there (otherwise I just need to repeat it). Now my question is: If I go for an ID ...
0
votes
2answers
61 views

Creating a Foreign Key after normalization

I've been creating a database, and I've just completed the normalization step. One of the relations violated the 2NF through partial dependency, so i split it into two relations, as per normalization ...

1 2 3 4 5