Viewing 15 posts - 10,831 through 10,845 (of 49,552 total)
https://www.simple-talk.com/books/sql-books/troubleshooting-sql-server-a-guide-for-the-accidental-dba/ - Chapter 4
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 26, 2013 at 2:10 am
Normal, fully expected. SQL needs space to put the new index. A rebuild creates the new index then drops the old. So if there wasn't space in the data file...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 9:35 am
Not true. You can wrap expressions in as many brackets as you like, makes no difference.
p.s. 3 year old thread.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 9:33 am
_nzrdb6 (11/25/2013)
I'm being asked to estimate restore time where backup time will be around 2hrs in total across a number of DBs.
Restore the database, see how long it takes. Best...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 9:32 am
sreekanth bandarla (11/25/2013)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 9:26 am
Straight from the article
Frequency of log backups
The frequency that log backups should be done is dependent on two considerations:
The maximum amount of data that can...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 9:24 am
Ratheesh.K.Nair (11/25/2013)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 9:23 am
Tran log backups are unaffected by full/diff backups, so you can have your tran log backups running before, during or after the full/diff.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 8:31 am
Please note: 3 year old thread
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 1:27 am
mah_j (11/24/2013)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2013 at 1:19 am
http://technet.microsoft.com/en-us/library/bb510680%28v=sql.105%29.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2013 at 1:41 pm
mah_j (11/24/2013)
Why should it ignore the default?You mean again it inserts a random data not bigger one?
If an insert explicitly specifies a value for a column that has a default,...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2013 at 12:08 pm
Better term for that is 'low page density'.
Inserts and updates can cause page splits, which results in pages half full. Deletes can leave empty gaps on pages where the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2013 at 12:05 pm
Depends what the book means by 'internal fragmentation'. It's a poorly defined term that has been used for different things by different people.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2013 at 6:06 am
It's the same data type. No idea if it'll even work. If you specify a default and the app explicitly inserts a value, the default is ignored.
Better option would be...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2013 at 6:05 am
Viewing 15 posts - 10,831 through 10,845 (of 49,552 total)