Click here to Skip to main content
15,885,143 members
Home / Discussions / Database
   

Database

 
AnswerRe: Database design Pin
Jörgen Andersson26-Jun-14 20:11
professionalJörgen Andersson26-Jun-14 20:11 
GeneralRe: Database design Pin
Bastien Vandamme26-Jun-14 20:18
Bastien Vandamme26-Jun-14 20:18 
GeneralRe: Database design Pin
Jörgen Andersson26-Jun-14 20:22
professionalJörgen Andersson26-Jun-14 20:22 
Questionsave documents in/out MySQL Pin
Jassim Rahma25-Jun-14 19:30
Jassim Rahma25-Jun-14 19:30 
AnswerRe: save documents in/out MySQL Pin
Jörgen Andersson25-Jun-14 20:09
professionalJörgen Andersson25-Jun-14 20:09 
QuestionSql Query for StoreProcedure to generate reports and subreports Pin
Member 1074488725-Jun-14 16:52
Member 1074488725-Jun-14 16:52 
AnswerRe: Sql Query for StoreProcedure to generate reports and subreports Pin
Jörgen Andersson25-Jun-14 20:11
professionalJörgen Andersson25-Jun-14 20:11 
Question[Bug][java.sql.DriverManager.getConnection(Unknown Source)] Pin
Thong LeTrung25-Jun-14 5:40
Thong LeTrung25-Jun-14 5:40 
QuestionPerformance problem Pin
sma123#23-Jun-14 7:25
sma123#23-Jun-14 7:25 
AnswerRe: Performance problem Pin
Eddy Vluggen23-Jun-14 7:38
professionalEddy Vluggen23-Jun-14 7:38 
AnswerRe: Performance problem Pin
David Mujica23-Jun-14 8:35
David Mujica23-Jun-14 8:35 
GeneralRe: Performance problem Pin
jschell25-Jun-14 12:22
jschell25-Jun-14 12:22 
GeneralRe: Performance problem Pin
Eddy Vluggen26-Jun-14 0:25
professionalEddy Vluggen26-Jun-14 0:25 
AnswerRe: Performance problem Pin
Mycroft Holmes25-Jun-14 0:31
professionalMycroft Holmes25-Jun-14 0:31 
QuestionA small naming problem Pin
Jörgen Andersson22-Jun-14 22:23
professionalJörgen Andersson22-Jun-14 22:23 
AnswerRe: A small naming problem Pin
Kornfeld Eliyahu Peter22-Jun-14 22:42
professionalKornfeld Eliyahu Peter22-Jun-14 22:42 
GeneralRe: A small naming problem Pin
Jörgen Andersson22-Jun-14 22:49
professionalJörgen Andersson22-Jun-14 22:49 
AnswerRe: A small naming problem Pin
Kornfeld Eliyahu Peter22-Jun-14 23:00
professionalKornfeld Eliyahu Peter22-Jun-14 23:00 
GeneralRe: A small naming problem Pin
Jörgen Andersson22-Jun-14 23:34
professionalJörgen Andersson22-Jun-14 23:34 
AnswerRe: A small naming problem Pin
Shameel30-Jun-14 4:28
professionalShameel30-Jun-14 4:28 
QuestionHow to connect with SSH Tunnel? Pin
Jassim Rahma22-Jun-14 21:30
Jassim Rahma22-Jun-14 21:30 
AnswerRe: How to connect with SSH Tunnel? Pin
Simon_Whale22-Jun-14 22:02
Simon_Whale22-Jun-14 22:02 
GeneralRe: How to connect with SSH Tunnel? Pin
Jassim Rahma22-Jun-14 23:13
Jassim Rahma22-Jun-14 23:13 
QuestionRead Only Database Pin
Bastien Vandamme22-Jun-14 18:43
Bastien Vandamme22-Jun-14 18:43 
AnswerRe: Read Only Database Pin
Kornfeld Eliyahu Peter22-Jun-14 19:40
professionalKornfeld Eliyahu Peter22-Jun-14 19:40 
Of course you do not talk about 'read only' database as SQL means it - 'read only' is a state of the database when no-one can do any write functions, including insert.
What you are talking about is that your inserts are fixed and final, can't be removed or updated...
for that you have to learn about GRANT[^]/DENY[^]/REVOKE[^] of SQL permissions...
For instance, this will prevent from user MyUser to run UPDATE and DELETE queries on table MyTable...
SQL
DENY UPDATE, DELETE ON MyTable TO MyUser

I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)

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.