Search Results

1
vote

What are the different types of indexes, what are the benefits of each?

Oracle has various combinations of b-tree, bitmap, partitioned and non-partitioned, reverse byte, bitmap join, and domain indexes. Here's a link to the 11gR1 documentation on the subject: …
1
vote

Can you have too many stored procedures?

Too much of any particular thing probably means you're doing it wrong. Too many config files, too many buttns on the screen ... Can't speak for other RDBMSs but an Oracle application that u …
3
votes

How many database indexes is too many?

In data warehousing it is very common to have a high number of indexes. I have worked with fact tables having two hundred columns and 190 of them indexed. Although there is an overhead to t …
1
vote

Composite primary keys versus unique object ID field

... how the database handles ID fields in a non-efficient manner and when it's building indexes, tree sorts are flawed ... This was almost certainly nonsense, b …
3
votes

Are nulls in a relational database okay?

This is a huge can of worms, because NULL can mean so many things: No date of death because the person is still alive. No cell phone number because we don't know what it is o …
4
votes

Optimizations for a Write heavy Oracle application?

Monitoring of the system health using statspack (9i) or AWR (10g+) would be the best method of identifying bottlenecks. In particular: lookout for redo waits. The redo log is …
1
vote

Disadvantage of stored procedures

Advantage: your database-related code is more likely to be written by staff who are interested in and skilled at database work. …
4
votes

Database design - Should a Date be used as part of a primary key

Consider a table of parts inventory -- if you want to store the inventory level at the end of each day then a composite primary key on part_id and date_of_day would be fine. You might choose to mak …
0
votes

Best method for storing monthly data in a database?

I would always go for the normalised month-per-row design, except ... There are some applications where it is appropriate to denormalise, in particular in a relational data mart. I …
0
votes

Is it better for faster access to split tables and JOIN in a SQL database or leave a few monolithic tables?

What's true for optimising SELECTS is often not so great at optimising INSERTS, UPDATES and DELETES, and thus it is with this approach. Breaking out the data into properly normalised tables reduces …
0
votes

Conflicting CASCADE and RESTRICT foreign key requirements?

Does the system support deferred constraints, in which the constraint check can be deferred until a commit point? Maybe that's just an Oracle thing though. …
0
votes

News feed database design as in Facebook

UNION = expensive, because the complete result set is subject to a DISTINCT operation. UNION ALL = cheaper, because it is effectively multiple queries for which the results of each are appended tog …
2
votes

Database and EF performance concern?

People's opinion on this will change over time because RDBMS query optimisation has evolved over time, and different RDBMSs will have different approaches. I can't speak for every syste out there b …
1
vote

AM/PM Column Name

How about: AM_OR_PM …
5
votes

Best beginner resources for understanding the EAV database model?

Here you go. An illustrative story: http://www.simple-talk.com/opinion/opinion-pieces/bad-carma/ …

1 2 3 next
15 30 50 per page