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.

 
Go Back  dBforums > General > Database Concepts & Design > database design

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-29-03, 01:10
mayday77 mayday77 is offline
Registered User
 
Join Date: Oct 2003
Posts: 1
database design

hi
i need to load daily records of around 5 million into the oracle database, so now i am trying to come up with a simple design for efficient search queries, the data for each row can be quite diff sometimes as they are actually call details, like the phonenumber, called number, timestamp and stuff, since there is the case.. i'm not sure actually if i just a single table to store of all them? as i don see the need to normalise..
so how shd the design be like then?

thank you
Reply With Quote
  #2 (permalink)  
Old 11-01-03, 00:42
mdr02125 mdr02125 is offline
Registered User
 
Join Date: Oct 2003
Location: Boston, Mass. USA
Posts: 81
well, i guess it depends what the different types of data are and what sort of queries you're going to run. Here's an idea -

CallContactLog
Index#, ContactType, AgentID, Caller/CustID, ReasonID< DispostionID


ContactTypeTable (OutboundCall, InboundCall, ACDCall, PaperProcessing, InboundE-Mail,Outbound E-Mail, InboundLetter, etc.),

AgentID (link to employee table)

CallerID - link to caller or customer table


ReasonTable,
(ReasonID, text reason - why was the call placed?
(claims, billing, coverage, sales, misc. - from 5 to 500 reasons)

Disposition
DispID, textDsipositon - what did the agent do
(resolve, refer to manager, refer toanother office, send for research, arrange for a callback)
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On