Click here to Skip to main content
15,887,485 members
Home / Discussions / Database
   

Database

 
QuestionCalculation For Time Attendance System Pin
caulsonchua3-Jul-13 22:13
caulsonchua3-Jul-13 22:13 
AnswerRe: Calculation For Time Attendance System Pin
Mycroft Holmes4-Jul-13 23:26
professionalMycroft Holmes4-Jul-13 23:26 
AnswerRe: Calculation For Time Attendance System Pin
Amol_B7-Jul-13 20:58
professionalAmol_B7-Jul-13 20:58 
GeneralRe: Calculation For Time Attendance System Pin
caulsonchua7-Jul-13 21:13
caulsonchua7-Jul-13 21:13 
Questionsqlserver 2005 connection problem Pin
hamadam212-Jul-13 23:13
hamadam212-Jul-13 23:13 
AnswerRe: sqlserver 2005 connection problem Pin
Eddy Vluggen3-Jul-13 0:30
professionalEddy Vluggen3-Jul-13 0:30 
QuestionSQL Server 2012 - forming relationship between tables Pin
RickBStewart2-Jul-13 10:53
RickBStewart2-Jul-13 10:53 
AnswerRe: SQL Server 2012 - forming relationship between tables Pin
Richard Deeming2-Jul-13 11:06
mveRichard Deeming2-Jul-13 11:06 
All of the primary key columns from the table on the "one" side need to be present in the table on the "many" side. In this case, you would add both building name and room number to your assets table, and specify both columns in the FOREIGN KEY relationship.

I'd be inclined to move the buildings out to a separate table with a surrogate key, since the value is likely to be repeated across many rows in the rooms table. Similarly, room type and staff name might be better in their own lookup tables, depending on your data.

Buildings
---------
BuildingId (PK)
BuildingName

Rooms
-----
BuildingId (PK, FK->Buildings)
RoomNumber (PK)
...

Assets
------
AssetNumber (PK)
BuildingId (FK->Rooms)
RoomNumber (FK->Rooms)
...




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: SQL Server 2012 - forming relationship between tables Pin
RickBStewart2-Jul-13 11:47
RickBStewart2-Jul-13 11:47 
GeneralRe: SQL Server 2012 - forming relationship between tables Pin
Mycroft Holmes2-Jul-13 13:01
professionalMycroft Holmes2-Jul-13 13:01 
GeneralRe: SQL Server 2012 - forming relationship between tables Pin
Ralph D. Wilson II10-Jul-13 6:50
Ralph D. Wilson II10-Jul-13 6:50 
GeneralRe: SQL Server 2012 - forming relationship between tables Pin
RickBStewart10-Jul-13 9:29
RickBStewart10-Jul-13 9:29 
QuestionDefault Button is not working using different (skinid) Pin
rubonkumar2-Jul-13 0:02
rubonkumar2-Jul-13 0:02 
AnswerRe: Default Button is not working using different (skinid) Pin
Eddy Vluggen2-Jul-13 0:31
professionalEddy Vluggen2-Jul-13 0:31 
GeneralRe: Default Button is not working using different (skinid) Pin
Mycroft Holmes2-Jul-13 1:23
professionalMycroft Holmes2-Jul-13 1:23 
GeneralRe: Default Button is not working using different (skinid) Pin
Shameel8-Jul-13 19:29
professionalShameel8-Jul-13 19:29 
GeneralRe: Default Button is not working using different (skinid) Pin
Mycroft Holmes8-Jul-13 21:26
professionalMycroft Holmes8-Jul-13 21:26 
QuestionDate difference with total years, months and days Pin
maxRazar1-Jul-13 18:37
maxRazar1-Jul-13 18:37 
AnswerRe: Date difference with total years, months and days Pin
Eddy Vluggen2-Jul-13 0:32
professionalEddy Vluggen2-Jul-13 0:32 
AnswerRe: Date difference with total years, months and days Pin
Mycroft Holmes2-Jul-13 1:21
professionalMycroft Holmes2-Jul-13 1:21 
GeneralRe: Date difference with total years, months and days Pin
Richard Deeming2-Jul-13 1:35
mveRichard Deeming2-Jul-13 1:35 
GeneralRe: Date difference with total years, months and days Pin
Tim Carmichael2-Jul-13 1:57
Tim Carmichael2-Jul-13 1:57 
GeneralRe: Date difference with total years, months and days Pin
Mycroft Holmes2-Jul-13 2:20
professionalMycroft Holmes2-Jul-13 2:20 
AnswerRe: Date difference with total years, months and days Pin
Tim Carmichael2-Jul-13 1:59
Tim Carmichael2-Jul-13 1:59 
QuestionKeep Client QL DB Updated Pin
Kevin Marois1-Jul-13 7:02
professionalKevin Marois1-Jul-13 7:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.