|
Hello,
I'm developing applications which can be build partly from modules. For example I would be able to develop some online community which contains the modules 'forum', 'blog', 'gallery', etc.
Currently I have one large database ERM containing all ...
Started by harald on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Unfortunatly the database community has yet to embrace such new conecepts as modular design, agileI keep separate database build scripts for each modules schema and just note in comments what other modules they are dependent on.....
|
|
How is database design different from program design?
Started by Lodle on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I would say database between program ....
Database design is more concerned about efficient & simplest persistence of our program and the result is database design.
Errr, seriously?
The premises are entirely different.
|
|
What do I have to consider in database design for a new application which should be able to support the most common relational database systems (SQL Server, MySQL, Oracle, PostgreSQL ...)?
Is it even worth the effort? What are the pitfalls?
Started by splattne on
, 18 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
What you need....
These are the wrong answers and only lead to pain interpretations .
They will often say only talk to the database via stored procs to abstract out any sql.
Is to not use database specific sql and just code to ansi standards.
|
Ask your Facebook Friends
|
Hi, I want to design a database which will keep record for financial transaction.I want to design it as a product so that it can be used for any type of financial transaction.Are there some design principles specific to financial transaction database ...
Started by sahil garg on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You will find database design principles for financial systems that are all that different when working with databases never hurt anyone:
Database Design Best Practices
Do you source control from from any database....
|
|
I tried to design the ui with some ui mocking software, but i found it's hard for me to settle down all the detail of the design, since the database didn't design yet.
But if i first design software, then the same problem occur, I didn't have the UI, ...
Started by MemoryLeak on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
That this approach has is that it doesn't prejudice the UI with a particular database design or vice versa that suffered from letting the database design drive the UI design?
Edit: As others have pointed out, you need....
|
|
I would like to know which is the common practice for a domain implementation. Designing the business objects first, that need persistence or the database schema first, generating it from an entity relationship diagram (and afterwards the ORM poco*'s)...
Started by Aggelos Mpimpoudis on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You don't have to necessarily make the initial design following strict....
Keeping this is mind when designing a database helps.
To the database side of things mainly because databases are the ones that are harder to scale.
|
|
Hello,
I have a relatively large database tables (just under a million rows) that has mapping like this:
(int, int, int, int) ----> (float, float)
Not all possible int combinations map to a float pair.
Here is where my knowledge of database design ...
Started by Goro on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are using the database for data-mining then this gives quick:
database_[a's value here....
Database access works that for common sequences of its.
If the mapping is deterministic over time, then you can also cache the results .
|
|
I've worked on projects before that would store fields in a comma-delimited or pipe-delimited string as a field, which might represent options or something simliar. I was wondering if it was considered bad database design to do this, and relational tables...
Started by GSto on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
It depends - if the database doesn't need to do any sort of filtering or sorting on the data in the delimited strings and the data was originally sent to the database in a delimited if the database is never....
database schema .
|
|
I have just installed the GDR RTM version of Visual Studio Team System Database Edition GDR RTM.
It all seems to work wonderfully, but I seem to have to edit XML (Database.sqlpermissions) for specify SQL Permissions.
Am I missing something?
For that matter...
Started by BlackMael on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Source....
Instead of graphic designers I design tables in database using SQL directly and deploy new database version or continue to make changes in the database directly this version.
It, it is looking better and better.
|
|
I want to design a database for my application, and I have a question about the way to define a relation between the entities.
I have 2 related entities which ID is compound. For example:
an address entity which are identified by the properties [street...
Started by Andy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Whether or not you have G UID the second....
The only proper way to design this (common) 1:n relationship is:
Address PhoneNumber *ID <---+ *ID StreetNumber.
Which is bad.
Records in the database that use it as soon as the data changes.
|