Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 Database Design and Application Architecture
 How can I create these table in correct way??

Author  Topic 

Spineless
Starting Member

1 Post

Posted - 2008-05-17 : 08:57:07
I need to create these tables..But i dont know how to create in correct way The question is in quote
...Please help me ..

quote:

Blue library has required an application to manage their works. This library organizes books with categories and sub categories. So each book belongs to a category. Books are stored with their title, author(s), edition, publication date, ISBN, and Publisher Company. Publisher Information must be stored in the separate table for data integrity. Additionally each book must have information about if it is international edition or not. Books must be searchable by their title, author and their categories.
Also, student information with their department information must be stored. Each student must have std id, name, surname, dept_id, enterance_date. And department table should have dept_id, dept_name columns.

When a student comes to library to reserve a book, the librarian should be able to reserve the requested books to the student. Each student may take at most 3 books. And each book should be returned in a month. The library manager should be able to take the list of books that are not returned on time. Also, library manager should be able to add/delete/update categories. However, other librarians should not be able to perform those tasks. Librarians should add/delete/update the books and reservations. For those functionalities, you should have two user categories that are Library Manager and library operators. Your database should support multiple operators. Unauthorized access to database should be prevented with user passwords. Each operator and Library Manager should have their own passwords. Library manager should have all privileges on library operator accounts. (i.e: retrieving a forgotten password, removing an account, adding a new operator account, etc.) User management process should be done by library manager account.




nathans
Aged Yak Warrior

938 Posts

Posted - 2008-05-17 : 20:58:14
Is this a direct quote from your homework assignment??
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-05-24 : 12:39:59
Looks like it is taken directly from Exam 229 for Development. You can find answer in it.
Go to Top of Page
   

- Advertisement -