Click here to Skip to main content
16,006,440 members
Home / Discussions / Database
   

Database

 
Questiondatabase problem Pin
With_problem10-Oct-06 21:24
With_problem10-Oct-06 21:24 
QuestionHow do I connect ASP.NET page to Lotus notes to send a mail ? Pin
justprashant10-Oct-06 20:14
justprashant10-Oct-06 20:14 
AnswerRe: How do I connect ASP.NET page to Lotus notes to send a mail ? Pin
Frank Kerrigan11-Oct-06 2:54
Frank Kerrigan11-Oct-06 2:54 
AnswerRe: How do I connect ASP.NET page to Lotus notes to send a mail ? Pin
User 19428926-Oct-06 2:33
User 19428926-Oct-06 2:33 
Questionmovie CATALOGUE Pin
flemmard10-Oct-06 17:17
flemmard10-Oct-06 17:17 
AnswerRe: movie CATALOGUE Pin
Colin Angus Mackay11-Oct-06 3:00
Colin Angus Mackay11-Oct-06 3:00 
GeneralRe: movie CATALOGUE Pin
flemmard11-Oct-06 14:45
flemmard11-Oct-06 14:45 
GeneralRe: movie CATALOGUE Pin
Colin Angus Mackay11-Oct-06 21:38
Colin Angus Mackay11-Oct-06 21:38 
flemmard wrote:
thnx guyz btw itz i m u juz plzzzz foto wat


You know it takes more time to interpret what you are saying if you use this bizzare "txtspk". Please write in proper English, the majority of people here that can help you are professionals.

thnx = thanks
guyz = guys
btw = by the way,
itz = its
i m = I'm
u = you
juz = just
plzzzz = please
foto = photo
wat = what

flemmard wrote:
i accpet itz a homework


Then you'll have to actually learn it. If I just give you the answer then you don't learn. You learn by doing.

flemmard wrote:
an u explain with tables (diagram)


This forum does not offer the facility to draw diagrams. ASCII art is the best you can get.

flemmard wrote:
for the foto, wat do u mean by blob


BLOB is a standard abbreviation for Binary Large OBject. Many database systems have a column type known as BLOB, image, binary, varbinary etc. for this. Usually it means a column that is able to accept upto 2Gb per row.


Now, why don't you go back and try and work out a data model for your movie catalog. The rules are:

1. Each column must contain a single piece of information. e.g. A person's name should be split out into first name, middle names, surname, or an address should be split out so that Street, Town, County, Country, Postcode are in separate columns. NOTE: In case you are tempted, dates have their own column type and are regarded as a single piece of information - do not split out the day, month and year.

2. Each table has a primary key that, by itself, can uniquely identify the row. Typically, this means creating a column that increments on each insert. It is calledn an IDENTITY column in SQL Server - MYSQL may have another name for it.

3. All information in a row is dependent on the primary key. In other words, if you have a table representing a person then First name, Surname and Date of Birth are valid columns, Address columns are not and should be put in a different table because you can have more than one person staying at the same address. If you keep address in the same table as the person you will end up having the same address repeated several times in the one table. So, if you find you have the same information repeated in the table several times then it is a candidate for removal to a new table (or perhaps another existing table)

If you want help with your data model, you have to prove that you at least tried it. So, have a go at creating a data model and then post it here and we can help you on any problems you may be having, or we can point out areas that don't quite fit that you don't see yet. That way you will learn as you go rather than just accept a pre-done data model without really understanding it.

I hope this helps.


GeneralRe: movie CATALOGUE Pin
flemmard13-Oct-06 16:15
flemmard13-Oct-06 16:15 
GeneralRe: movie CATALOGUE Pin
Colin Angus Mackay13-Oct-06 17:02
Colin Angus Mackay13-Oct-06 17:02 
GeneralRe: movie CATALOGUE Pin
flemmard13-Oct-06 17:19
flemmard13-Oct-06 17:19 
GeneralRe: movie CATALOGUE Pin
Colin Angus Mackay14-Oct-06 1:04
Colin Angus Mackay14-Oct-06 1:04 
AnswerRe: movie CATALOGUE Pin
Frank Kerrigan11-Oct-06 3:04
Frank Kerrigan11-Oct-06 3:04 
GeneralRe: movie CATALOGUE Pin
Colin Angus Mackay11-Oct-06 3:07
Colin Angus Mackay11-Oct-06 3:07 
GeneralRe: movie CATALOGUE Pin
Frank Kerrigan11-Oct-06 5:32
Frank Kerrigan11-Oct-06 5:32 
Question[Message Deleted] Pin
Ah_Mohsen_aly10-Oct-06 16:01
Ah_Mohsen_aly10-Oct-06 16:01 
AnswerRe: Data base logic Pin
Chris Buckett10-Oct-06 23:46
Chris Buckett10-Oct-06 23:46 
GeneralRe: Data base logic Pin
Ah_Mohsen_aly11-Oct-06 7:35
Ah_Mohsen_aly11-Oct-06 7:35 
AnswerRe: Data base logic Pin
Colin Angus Mackay11-Oct-06 2:42
Colin Angus Mackay11-Oct-06 2:42 
GeneralRe: Data base logic Pin
Frank Kerrigan11-Oct-06 2:44
Frank Kerrigan11-Oct-06 2:44 
GeneralRe: Data base logic Pin
Colin Angus Mackay11-Oct-06 2:50
Colin Angus Mackay11-Oct-06 2:50 
QuestionProblems with SQL Pin
Britney S. Morales10-Oct-06 10:12
Britney S. Morales10-Oct-06 10:12 
AnswerRe: Problems with SQL Pin
Colin Angus Mackay11-Oct-06 2:45
Colin Angus Mackay11-Oct-06 2:45 
AnswerRe: Problems with SQL Pin
Frank Kerrigan11-Oct-06 2:47
Frank Kerrigan11-Oct-06 2:47 
AnswerRe: Problems with SQL Pin
Eric Dahlvang12-Oct-06 4:57
Eric Dahlvang12-Oct-06 4:57 

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.