If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I am a student and working on a project that works on db schemas.
My problem is now, that I have to create views on given entities and determine wheter it covers the parent relation or it is disjoint with its siblings.
All this must be done by just looking at the metadata ..
yeah
my idea is to examine the metadata for what ever SQL engine you are using
understand that data, understand how that engine defines its structure, tables indexes and so on.
usually the data you want is in the schema.
in MySQL its information_schema
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
so either track down the documentation for that db
or
create a series of tables which have the features you want and examine the meta data, spot the differences, analyse what settings your db uses to define relationships, foreign keys datatypes and so on.
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
so either track down the documentation for that db
or
create a series of tables which have the features you want and examine the meta data, spot the differences, analyse what settings your db uses to define relationships, foreign keys datatypes and so on.