![]() |
Need Database Design idea
Hi shabir,
I am indulged in developing Online Issue Tracking sytem.For that I have met with a problem in Database creation. The Sceneario is "The Database should be specific for each and every group of customers,For example initially A is a company with 10 users accessing the product after two days B is a company with 50 user accessing the same product".In this case the datase base should be provided to the two companies separately to maintain their transaction. How to handle this. Any sort of ideas is valuable for me. Thanks, Ramanan |
Re: Need Database Design idea
You have the same thread almost 5 times and do not irritate the people who can help you. I have closed all your other threads with a reference to this one.
|
Re: Need Database Design idea
Sorry for the delayed reply.
You can design the table with column name "Company name" based on the company name... you can filter the datas. Just create the same database schema and pass this to all companies. don't go for different schema for each company based on the company name |
Re: Need Database Design idea
The design process
The design process consists of the following steps:
|
Re: Need Database Design idea
Do the companies share the same data (a) just for read access (b) for read/write? Should each be able to see the other's data?
One solution if they don't need to share data at all is just to give them different schemas to connect to and to duplicate the table structures (but not the data) in each schema. If they need to share data then the shared data can go into a schema accessible by both. but they should still both have their own schema for security/tracking purposes. Or they could both connect to the same schema, but if they do that then each company will have full control over the other company's data, which may not be desirable. |
| All times are GMT +5.5. The time now is 01:11. |