Click here to Skip to main content
15,925,371 members
Home / Discussions / Database
   

Database

 
QuestionCombining tables [modified] Pin
Chris McGlothen5-Oct-06 11:35
Chris McGlothen5-Oct-06 11:35 
AnswerRe: Combining tables Pin
Farhan Noor Qureshi5-Oct-06 12:12
Farhan Noor Qureshi5-Oct-06 12:12 
QuestionIn Search Of A Good Query Tool Pin
nullGumby5-Oct-06 7:11
nullGumby5-Oct-06 7:11 
AnswerRe: In Search Of A Good Query Tool Pin
yahao8-Oct-06 18:00
yahao8-Oct-06 18:00 
QuestionWhich database format is good enough? Pin
Joe Smith IX5-Oct-06 6:42
Joe Smith IX5-Oct-06 6:42 
AnswerRe: Which database format is good enough? Pin
Chris Buckett5-Oct-06 8:51
Chris Buckett5-Oct-06 8:51 
GeneralRe: Which database format is good enough? Pin
Joe Smith IX5-Oct-06 22:22
Joe Smith IX5-Oct-06 22:22 
GeneralRe: Which database format is good enough? Pin
Chris Buckett5-Oct-06 22:39
Chris Buckett5-Oct-06 22:39 
Joe Smith IX wrote:
don't see the point of having different login for each user, all of them need to access the database,

The application uses the database's username / password security to access the database - individual user authentication (possibly based upon a username / password) can be left to you to create in the database tables if you require it.

I would suggest you read up on "mixed mode"[^] authentication (this is where you install sql server (express) in such a way as to require a valid password to access the database (this password is part of the dsn - e.g.

"Data Source=MyServer;Initial Catalog=MyDatabase;User Id=myUsername;Password=myPassword;"


myUsername and myPassword is not the individual users (i.e. person's) username, but the username you specify in the database and your application uses to access the data. It sounds like you currently have sql express installed in "trusted mode".

If I were to then try to connect to the database from outside your application (e.g. to query the data in excel, I would be required to enter the same username / password).


Joe Smith IX wrote:
they can use SQL Management Studio to access the database directly


I would question why any user would have SQL Management Studio installed on their machine, but with the above, they would need to specify the username and password.

You can specify multiple usernames and passwords - possibly one username only allows access to specific views and stored procedures, andother username has greater access to the data. Perhaps the more restricted username would be user for a "web" interface to your application and the less restricted is used for the gui.

The point being, that usernames don't need to map directly to "users as in people."

Joe Smith IX wrote:
As for Interbase and MySql, are their passwords strong enough or can be cracked by hacker as well?

It's not their password that is strong enough, it's your password that is strong enough. If you use the password "password" or "letmein" I dare say someone will hack it fairly quickly. The same goes for SQL Server.

Hope that's of use.

ChrisB
GeneralRe: Which database format is good enough? Pin
Joe Smith IX6-Oct-06 9:27
Joe Smith IX6-Oct-06 9:27 
GeneralRe: Which database format is good enough? Pin
Chris Buckett7-Oct-06 7:17
Chris Buckett7-Oct-06 7:17 
GeneralRe: Which database format is good enough? Pin
Joe Smith IX7-Oct-06 7:58
Joe Smith IX7-Oct-06 7:58 
GeneralRe: Which database format is good enough? Pin
Jerry Hammond7-Oct-06 12:58
Jerry Hammond7-Oct-06 12:58 
AnswerRe: Which database format is good enough? Pin
Jerry Hammond5-Oct-06 9:08
Jerry Hammond5-Oct-06 9:08 
QuestionLeft Join & Group By Pin
phimix5-Oct-06 4:40
phimix5-Oct-06 4:40 
AnswerRe: Left Join & Group By Pin
mr_lasseter5-Oct-06 4:52
mr_lasseter5-Oct-06 4:52 
QuestionRe: Left Join & Group By Pin
phimix5-Oct-06 5:17
phimix5-Oct-06 5:17 
AnswerRe: Left Join & Group By Pin
mr_lasseter5-Oct-06 5:34
mr_lasseter5-Oct-06 5:34 
QuestionRe: Left Join & Group By Pin
phimix5-Oct-06 6:02
phimix5-Oct-06 6:02 
QuestionRe: Left Join & Group By Pin
mr_lasseter5-Oct-06 6:06
mr_lasseter5-Oct-06 6:06 
AnswerRe: Left Join & Group By Pin
phimix5-Oct-06 7:01
phimix5-Oct-06 7:01 
GeneralRe: Left Join & Group By [modified] Pin
mr_lasseter5-Oct-06 7:44
mr_lasseter5-Oct-06 7:44 
GeneralRe: Left Join & Group By Pin
phimix5-Oct-06 19:34
phimix5-Oct-06 19:34 
QuestionRecord 'Deletion' Pin
Dayekh5-Oct-06 3:56
Dayekh5-Oct-06 3:56 
AnswerRe: Record 'Deletion' Pin
mr_lasseter5-Oct-06 5:44
mr_lasseter5-Oct-06 5:44 
GeneralRe: Record 'Deletion' Pin
Dayekh5-Oct-06 23:12
Dayekh5-Oct-06 23:12 

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.