Click here to Skip to main content
15,919,434 members
Home / Discussions / Database
   

Database

 
QuestionRe: Connect to server [modified] Pin
emiralp8-Jun-07 23:04
emiralp8-Jun-07 23:04 
AnswerRe: Connect to server Pin
Paul Conrad9-Jun-07 11:03
professionalPaul Conrad9-Jun-07 11:03 
QuestionCRecordset for multi-table recordsets Pin
paulosuckow8-Jun-07 8:28
paulosuckow8-Jun-07 8:28 
Questiontop rows Pin
vasini8-Jun-07 7:30
vasini8-Jun-07 7:30 
AnswerRe: top rows Pin
Colin Angus Mackay8-Jun-07 9:13
Colin Angus Mackay8-Jun-07 9:13 
AnswerRe: top rows Pin
Harini N K10-Jun-07 19:33
Harini N K10-Jun-07 19:33 
QuestionSQL Server Speed Pin
3fonov8-Jun-07 3:23
3fonov8-Jun-07 3:23 
AnswerRe: SQL Server Speed Pin
Mike Dimmick8-Jun-07 9:20
Mike Dimmick8-Jun-07 9:20 
Typically your databases on Express are set to the Simple recovery model. This keeps only the transaction logs required to roll back active transactions. It rapidly overwrites the log records once the corresponding transaction is committed.

In contrast databases on the true server editions of SQL Server default to the Full recovery model, which logs everything that's done and keeps log records until the log is backed up, in order that recovery can occur to the point of failure if the data files are lost (and you restore a full backup). If you're not backing up the transaction log through a SQL Server-aware product, they simply keep growing. This may well take longer to scan on opening a database.

Also, SQL Server Express Edition only actually opens databases and performing the roll forward of logged committed operations and rollback of logged uncommitted operations when that database is accessed (this is the 'auto close' option). The full editions of SQL Server open and recover all database at service startup.

The time to perform recovery is also affected by the disk subsystem you're running the process on - it will be directly proportional to the read speed of the disks. If you're running on RAID 5, check that you haven't got a failed disk - your read speed will have gone through the floor. You will also get a complete failure if another drive fails.

Stability. What an interesting concept. -- Chris Maunder

QuestionWhy this is faster? Pin
Arun.Immanuel8-Jun-07 2:33
Arun.Immanuel8-Jun-07 2:33 
AnswerRe: Why this is faster? Pin
Colin Angus Mackay8-Jun-07 2:38
Colin Angus Mackay8-Jun-07 2:38 
JokeRe: Why this is faster? Pin
Rob Graham8-Jun-07 2:51
Rob Graham8-Jun-07 2:51 
GeneralRe: Why this is faster? Pin
Arun.Immanuel8-Jun-07 2:54
Arun.Immanuel8-Jun-07 2:54 
GeneralRe: Why this is faster? Pin
Arun.Immanuel8-Jun-07 2:52
Arun.Immanuel8-Jun-07 2:52 
GeneralRe: Why this is faster? Pin
andyharman8-Jun-07 3:38
professionalandyharman8-Jun-07 3:38 
GeneralRe: Why this is faster? Pin
Arun.Immanuel8-Jun-07 5:21
Arun.Immanuel8-Jun-07 5:21 
QuestionHow to alter table Pin
rzthebeginner8-Jun-07 2:21
rzthebeginner8-Jun-07 2:21 
AnswerRe: How to alter table Pin
Arun.Immanuel8-Jun-07 2:37
Arun.Immanuel8-Jun-07 2:37 
AnswerRe: How to alter table Pin
Rob Graham8-Jun-07 3:02
Rob Graham8-Jun-07 3:02 
QuestionSQL Connection DialogBox Pin
ScottM18-Jun-07 2:05
ScottM18-Jun-07 2:05 
Questionmeaning of @ in sql Pin
emiralp8-Jun-07 1:44
emiralp8-Jun-07 1:44 
AnswerRe: meaning of @ in sql Pin
wout de zeeuw8-Jun-07 1:53
wout de zeeuw8-Jun-07 1:53 
AnswerRe: meaning of @ in sql Pin
kubben8-Jun-07 1:53
kubben8-Jun-07 1:53 
AnswerRe: meaning of @ in sql Pin
Colin Angus Mackay8-Jun-07 2:41
Colin Angus Mackay8-Jun-07 2:41 
GeneralRe: meaning of @ in sql Pin
Colin Angus Mackay8-Jun-07 2:40
Colin Angus Mackay8-Jun-07 2:40 
QuestionConnecting to the server Pin
taherjaorawala7-Jun-07 23:34
taherjaorawala7-Jun-07 23:34 

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.