Click here to Skip to main content
15,895,538 members
Home / Discussions / Database
   

Database

 
GeneralRe: How to populate a datagrid? Pin
enipla9-Jan-09 8:57
enipla9-Jan-09 8:57 
GeneralRe: How to populate a datagrid? Pin
Wendelius9-Jan-09 9:13
mentorWendelius9-Jan-09 9:13 
GeneralRe: How to populate a datagrid? Pin
enipla9-Jan-09 9:29
enipla9-Jan-09 9:29 
GeneralRe: How to populate a datagrid? Pin
Wendelius9-Jan-09 9:37
mentorWendelius9-Jan-09 9:37 
QuestionHow do I share information between a Dozen Databases Locally and Globally without Licenses Pin
BobClarkSQL9-Jan-09 5:05
BobClarkSQL9-Jan-09 5:05 
QuestionRe: How do I share information between a Dozen Databases Locally and Globally without Licenses Pin
Wendelius9-Jan-09 5:15
mentorWendelius9-Jan-09 5:15 
AnswerRe: How do I share information between a Dozen Databases Locally and Globally without Licenses Pin
BobClarkSQL9-Jan-09 5:40
BobClarkSQL9-Jan-09 5:40 
GeneralRe: How do I share information between a Dozen Databases Locally and Globally without Licenses Pin
Wendelius9-Jan-09 6:01
mentorWendelius9-Jan-09 6:01 
But in that case, the question is only in data modeling. Create a single database and the necessary tables. In those tables record the tester name (or whatever is the way you separate them). This way everyon can have own results as ell as they can use others results.

For example, if you have a table Measurement, it could have columns like:
- MeasurementID, int, primary key, not null
- Tester, int, not null, reference to Tester table
- MeasurementTime, datetime, not null
- MeasurementType, varchar(100), not null
- MeasurementResult, int, not null etc.

So when fetching results from a single tester you would restrict the query to only single Tester. But if you want to use other tseters, just modify the WHERE-clause.

And what comes to the database, you can use Sql Server 2008 Express Edition. Just not that Express edition has these limitations:
- 1 CPU
- 1 GB memory
- 4 GB of data per database

The need to optimize rises from a bad design.My articles[^]

QuestionFill Method with a big DB connected through the internet Pin
fifothekid9-Jan-09 3:18
fifothekid9-Jan-09 3:18 
AnswerRe: Fill Method with a big DB connected through the internet Pin
Wendelius9-Jan-09 3:51
mentorWendelius9-Jan-09 3:51 
GeneralRe: Fill Method with a big DB connected through the internet Pin
fifothekid9-Jan-09 3:57
fifothekid9-Jan-09 3:57 
GeneralRe: Fill Method with a big DB connected through the internet Pin
Wendelius9-Jan-09 4:22
mentorWendelius9-Jan-09 4:22 
QuestionInsert sum of two columns to third column in sqlserver Pin
Satish - Developer9-Jan-09 1:39
Satish - Developer9-Jan-09 1:39 
AnswerRe: Insert sum of two columns to third column in sqlserver [modified] Pin
Ashfield9-Jan-09 1:44
Ashfield9-Jan-09 1:44 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Wendelius9-Jan-09 2:38
mentorWendelius9-Jan-09 2:38 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Ashfield9-Jan-09 4:20
Ashfield9-Jan-09 4:20 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Wendelius9-Jan-09 4:28
mentorWendelius9-Jan-09 4:28 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Ashfield9-Jan-09 5:21
Ashfield9-Jan-09 5:21 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Wendelius9-Jan-09 6:05
mentorWendelius9-Jan-09 6:05 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Ashfield9-Jan-09 8:27
Ashfield9-Jan-09 8:27 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Wendelius9-Jan-09 8:51
mentorWendelius9-Jan-09 8:51 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Mycroft Holmes9-Jan-09 23:07
professionalMycroft Holmes9-Jan-09 23:07 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Wendelius10-Jan-09 1:07
mentorWendelius10-Jan-09 1:07 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Mycroft Holmes10-Jan-09 2:37
professionalMycroft Holmes10-Jan-09 2:37 
GeneralRe: Insert sum of two columns to third column in sqlserver Pin
Wendelius10-Jan-09 3:05
mentorWendelius10-Jan-09 3: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.