Click here to Skip to main content
15,888,202 members
Home / Discussions / Database
   

Database

 
AnswerRe: help with storage engine in a sql server 2005 [modified] Pin
Henry Minute11-Sep-09 0:17
Henry Minute11-Sep-09 0:17 
Question"A member could not be added to a local group because the member has the wrong account type.[0*8007056c]" Pin
manish.m.meshram10-Sep-09 22:30
manish.m.meshram10-Sep-09 22:30 
GeneralSqlHierarchyId insert Pin
Mycroft Holmes10-Sep-09 18:37
professionalMycroft Holmes10-Sep-09 18:37 
GeneralRe: SqlHierarchyId insert [resolved] Pin
Mycroft Holmes10-Sep-09 19:49
professionalMycroft Holmes10-Sep-09 19:49 
QuestionMass Insert Pin
zeusToronto10-Sep-09 17:04
zeusToronto10-Sep-09 17:04 
AnswerRe: Mass Insert Pin
Mycroft Holmes10-Sep-09 18:31
professionalMycroft Holmes10-Sep-09 18:31 
GeneralRe: Mass Insert Pin
PIEBALDconsult14-Sep-09 7:19
mvePIEBALDconsult14-Sep-09 7:19 
AnswerRe: Mass Insert Pin
David Skelly10-Sep-09 22:52
David Skelly10-Sep-09 22:52 
A comparison of the various editions of SQL Server is given here:

http://www.microsoft.com/Sqlserver/2005/en/us/compare-features.aspx[^]

There is no limit to the number of connections for SQL Express, other than the limits imposed by the restriction to a single CPU and 1GB of RAM.

As far as inserting into the same table from more than 1 client goes, SQL Express is no different from any other database. Depending on what your application is doing (insert only or are any reads or updates involved?), the transaction scope you use (do you insert each row in its own transaction, or do you block the whole lot into one big transaction?) and what isolation level you are using (the default - read committed - sounds as if it should be OK for your application if it's insert only), you may or may not see blocking occurring between the clients.

What do you do if SQL Express tops out and can't cope with the load? Well, one answer is: put your hand in your pocket and buy a full version of SQL Server. If you don't have the budget for that, you could either look to use one of the free databases that are available (MySQL, Firebird, PostgreSQL, SAPDB, there are loads of them around) or you could think laterally. Don't run all the scheduled jobs at noon, stagger them through the day. Or don't write directly into the main database, write each clients' log into its own staging area then have a single central job which comes round and collates it all together later. Think of it as a chance to get creative and flex your architectural design skills.
AnswerRe: Mass Insert Pin
Henry Minute11-Sep-09 10:32
Henry Minute11-Sep-09 10:32 
Questionhelp writing query Pin
michaelgr110-Sep-09 9:08
michaelgr110-Sep-09 9:08 
AnswerRe: help writing query Pin
Mycroft Holmes10-Sep-09 14:45
professionalMycroft Holmes10-Sep-09 14:45 
AnswerRe: help writing query [modified] Pin
Johan Hakkesteegt10-Sep-09 23:30
Johan Hakkesteegt10-Sep-09 23:30 
Questiongetting date less than 3 yr.s old Pin
dotnetcsharpdev10-Sep-09 0:22
dotnetcsharpdev10-Sep-09 0:22 
AnswerRe: getting date less than 3 yr.s old Pin
dotnetcsharpdev10-Sep-09 0:57
dotnetcsharpdev10-Sep-09 0:57 
AnswerRe: getting date less than 3 yr.s old Pin
zeusToronto10-Sep-09 17:14
zeusToronto10-Sep-09 17:14 
QuestionDatabase Serive stops responding on SQL Express 2005. Pin
Aman786Singh9-Sep-09 22:35
Aman786Singh9-Sep-09 22:35 
AnswerRe: Database Serive stops responding on SQL Express 2005. Pin
Abhishek Sur10-Sep-09 11:53
professionalAbhishek Sur10-Sep-09 11:53 
QuestionOffsite databases - setup recommendations Pin
Simon P Stevens8-Sep-09 22:54
Simon P Stevens8-Sep-09 22:54 
AnswerRe: Offsite databases - setup recommendations Pin
J4amieC9-Sep-09 2:15
J4amieC9-Sep-09 2:15 
GeneralRe: Offsite databases - setup recommendations Pin
Simon P Stevens9-Sep-09 3:26
Simon P Stevens9-Sep-09 3:26 
GeneralRe: Offsite databases - setup recommendations Pin
Johan Hakkesteegt10-Sep-09 0:10
Johan Hakkesteegt10-Sep-09 0:10 
GeneralRe: Offsite databases - setup recommendations Pin
Simon P Stevens11-Sep-09 4:21
Simon P Stevens11-Sep-09 4:21 
QuestionSearching marathi(non-eglish) databse Pin
girishdonde8-Sep-09 21:45
girishdonde8-Sep-09 21:45 
AnswerRe: Searching marathi(non-eglish) databse Pin
Mycroft Holmes8-Sep-09 22:42
professionalMycroft Holmes8-Sep-09 22:42 
GeneralRe: Searching marathi(non-eglish) databse Pin
Luc Pattyn9-Sep-09 1:52
sitebuilderLuc Pattyn9-Sep-09 1:52 

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.