Click here to Skip to main content
15,903,175 members
Home / Discussions / Database
   

Database

 
GeneralRe: Connect C# Application to network Oracle 10g install Pin
PDTUM18-Dec-10 13:55
PDTUM18-Dec-10 13:55 
JokeRe: Connect C# Application to network Oracle 10g install Pin
Mycroft Holmes18-Dec-10 16:21
professionalMycroft Holmes18-Dec-10 16:21 
GeneralRe: Connect C# Application to network Oracle 10g install Pin
jschell19-Dec-10 9:57
jschell19-Dec-10 9:57 
GeneralRe: Connect C# Application to network Oracle 10g install Pin
PDTUM19-Dec-10 10:39
PDTUM19-Dec-10 10:39 
GeneralRe: Connect C# Application to network Oracle 10g install Pin
jschell20-Dec-10 9:06
jschell20-Dec-10 9:06 
QuestionDatabase design Pin
V.16-Dec-10 20:23
professionalV.16-Dec-10 20:23 
AnswerRe: Database design Pin
Mycroft Holmes16-Dec-10 20:56
professionalMycroft Holmes16-Dec-10 20:56 
GeneralRe: Database design Pin
Jörgen Andersson16-Dec-10 22:10
professionalJörgen Andersson16-Dec-10 22:10 
Mycroft Holmes wrote:
For one, I'm told Oracle does not like multiple databases on a server, the design is to use schemas, I thought this was pure bullsh*t but it came from a DBA so it may be right.


It's BS. It works quite fine. It's just pointless. Multiple schemas is the way to go.


Mycroft Holmes wrote:
For another Oracle is case sensitive when dealing with data so where name = 'Johny' will miss 'johny' IMHO this and the ongoing support requirement enough reason to use another database (sql server).


And the problem is what? Use a function based index and you got the best of both worlds.
Example:
CREATE INDEX foo_bar_ix
  ON foo (
    LOWER("bar")
  )
/

And then you can search the table with Select * from Foo where lower(bar) = lower('Johnny');

"When did ignorance become a point of view" - Dilbert

GeneralRe: Database design Pin
Pete O'Hanlon17-Dec-10 4:50
mvePete O'Hanlon17-Dec-10 4:50 
GeneralRe: Database design Pin
Jörgen Andersson17-Dec-10 8:32
professionalJörgen Andersson17-Dec-10 8:32 
GeneralRe: Database design Pin
Pete O'Hanlon17-Dec-10 8:36
mvePete O'Hanlon17-Dec-10 8:36 
GeneralRe: Database design Pin
Jörgen Andersson17-Dec-10 8:53
professionalJörgen Andersson17-Dec-10 8:53 
GeneralRe: Database design Pin
Pete O'Hanlon17-Dec-10 9:15
mvePete O'Hanlon17-Dec-10 9:15 
GeneralRe: Database design Pin
Jörgen Andersson17-Dec-10 9:54
professionalJörgen Andersson17-Dec-10 9:54 
GeneralRe: Database design Pin
Pete O'Hanlon17-Dec-10 10:33
mvePete O'Hanlon17-Dec-10 10:33 
GeneralRe: Database design Pin
Jörgen Andersson18-Dec-10 12:02
professionalJörgen Andersson18-Dec-10 12:02 
GeneralRe: Database design Pin
Pete O'Hanlon19-Dec-10 9:13
mvePete O'Hanlon19-Dec-10 9:13 
GeneralRe: Database design Pin
Jörgen Andersson4-Jan-11 21:12
professionalJörgen Andersson4-Jan-11 21:12 
GeneralRe: Database design Pin
Mycroft Holmes17-Dec-10 10:57
professionalMycroft Holmes17-Dec-10 10:57 
GeneralRe: Database design Pin
Pete O'Hanlon19-Dec-10 23:20
mvePete O'Hanlon19-Dec-10 23:20 
GeneralRe: Database design Pin
Jörgen Andersson20-Dec-10 1:54
professionalJörgen Andersson20-Dec-10 1:54 
GeneralRe: Database design Pin
Mycroft Holmes17-Dec-10 10:53
professionalMycroft Holmes17-Dec-10 10:53 
GeneralRe: Database design Pin
Jörgen Andersson18-Dec-10 11:41
professionalJörgen Andersson18-Dec-10 11:41 
GeneralRe: Database design Pin
Mycroft Holmes18-Dec-10 12:16
professionalMycroft Holmes18-Dec-10 12:16 
GeneralRe: Database design Pin
Jörgen Andersson18-Dec-10 21:05
professionalJörgen Andersson18-Dec-10 21:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.