0
votes
1answer
29 views

Oracle Designer 9i - Export layout information of ERD

We have a repository of hundreds of Entity Relationship Diagrams with a specific layout and we have to migrate them to Oracle Data Modeler including layout information. Actually we have to redraw ...
0
votes
1answer
40 views

Suggestions for an Oracle data modeler that can reverse engineer and handle very large databases [closed]

By very large, I mean on the realm of thousands of tables. I've been able to use Toad Data Modeler to do the reverse engineering, but once it loads up the txp file it creates, it just croaks. Even ...
0
votes
1answer
112 views

Oracle Table structure

I have a table in Oracle Database which has 60 columns. Following is the table structure. ID NAME TIMESTAMP PROERTY1 ...... PROPERTY60 This table will have many rows. the size of the table will ...
0
votes
1answer
42 views

How to Model Last Values for Missing Weekend Data

I'm trying to create a query that will carry data forward to null rows. This is a fairly simple query with analytic functions LAG and LEAD The query works when there is no partition by window and ...
0
votes
1answer
91 views

Are these tables normalized? [closed]

Office: - office_id - office_name - city Employee - office_id - employee_id - username - password - department - designation - extension_no ConferenceHall ...
0
votes
0answers
52 views

SQL Developer Data Modeler 3.1 wheres the template?

I remember back on 3.0 there was a Tree Item with the Templates for default keys, indexes and columns generation . I deffinitly can't find them on 3.1. Where they are?!
1
vote
0answers
136 views

Database design in Enterprise Data Warehouse [closed]

I am facing with a challenging problem in database design for a data warehouse have to be realized with 3 layers: staging (STG) datawarehouse (EDW) datamarts (DMA). Let's image to do it for a ...
1
vote
1answer
388 views

Can only one foreign key reference a primary key?

When creating a table and a database in do the foreign keys need to be unique? For example Table: Manifest Manifest_Barcode - PK Vehicle_reg - FK weight description Table: Vehicle vechicle_reg - ...
2
votes
3answers
293 views

Foreign key on a non-unique index? (oracle)

I'm trying to create a constraint on table A to check if a set of records exists in a table B. I could use a foreign key, but the problem is that the data in the table B is non-unique. Is there a way ...
-3
votes
1answer
347 views

difference between Surrogate key,Synthetic Key, Artificial key [closed]

Is there any difference in Surrogate Key, Synthetic Key and Artificial Key ? I didn't get the exact difference.
-1
votes
1answer
132 views

sql - table format for monthly wise [closed]

I have a data of 300 students monthly wise for an year please suggest me in which table format I have to store that data. I want to compare monthly wise data per each student.
2
votes
3answers
475 views

Surrogate key for date dimension?

There are 2 schools of thought: Use a surrogate key, preferably in the format: YYYYMMDD as this will always be sequential. Eliminate the Date dimension surrogate key and use actual date instead. ...
2
votes
1answer
77 views

Relational Mapping of finite tree with instances

I have to represent the following structure in a relational database. There are five hierarchy levels: A, B, C, D. The relation between the hierarchy levels is always one to many, so A has many B, but ...
1
vote
1answer
450 views

Oracle Entity Relationship diagramming tool

Does anyone know a good opensource tool that can be used to manage Entities in Oracle 11G? For Mysql we have workbench even-though it has some bugs it's getting better. As for Oracle I couldn't find a ...
1
vote
0answers
141 views

How to create inheritance on ORACLE Data Modeler

I am not able to crate an entity inheritance in Oracle SQL Data Modeler (v3.1, the most recent one). Another issue: how to create a structured type? Is someone can help? I have tried with Google ...
0
votes
1answer
202 views

Database design: Transaction Status , in journal or in transaction table?

Should the transaction status be in the transaction journal table or in the transaction table? Your journal links one or more transactions, Example payment to bob Your account DR $10 Bob account CR ...
2
votes
5answers
259 views

Dynamic database design for variable length spatio-temporal data in oracle (need a schema design)

Currently I am working on a research project, where I need to store spatio-temporal data and analyze them efficiently. I am giving the exact requirement below. The research is going on meteorological ...
1
vote
1answer
72 views

Database Modeling:Find how the data looks like in the give date and time

if i have table1, table2, table3..table50 that stores different information about a product what would be the efficient way to keeping track of incremental changes in a way that if i want to go back ...
3
votes
4answers
1k views

Foreign Key Constraints in Oracle

I have Entity Relationship Model (ERD) where entities IndividualCategory and TeamCategory relate to entity Category. Now I want to create tables in Oracle DB. I started like this: CREATE TABLE ...
0
votes
0answers
112 views

Declarative integrity constraint between rows without pivot

I have a situation like the following join table: A_ID B_ID 1 27 1 314 1 5 I need to put a constraint on the table that will prevent a duplicate group from being entered. In other ...
1
vote
1answer
73 views

Declarative integrity constraint between rows without pivot

I have a situation like the following join table: A_ID B_ID 1 27 1 314 1 5 I need to put a constraint on the table that will prevent a duplicate group from being entered. In other ...
2
votes
1answer
497 views

Got an Oracle Table Named as Reserved Word, Which problems may arise?

We just got a system outsourced and at first glance i can see some tables and fields with names as CASE or FROM. It is an Oracle 10g DB and we are going to be consuming those data from Java, ...
11
votes
9answers
40k views

Tools to generate a database diagram/ER diagram from existing Oracle database?

Looking for tools (windows platform) to genereate ER diagram (or similar) from an existing Oracle database. Any good tools out there that are free to use or low cost?
0
votes
1answer
357 views

Oracle Data Modeler and synonyms

I've been searching the web for two days and still cannot find a way to generate DDL code with public synonyms. Would be very grateful for an advice.
3
votes
3answers
1k views

Rails modeling: converting HABTM to has_many :through

I'm doing maintenance work on an existing Rails site and am having some problems stemming from many-to-many associations. It looks like the site was initially built using has_and_belongs_to_many for ...