Viewing 15 posts - 10,831 through 10,845 (of 49,566 total)
https://www.simple-talk.com/books/sql-books/troubleshooting-sql-server-a-guide-for-the-accidental-dba/ - Chapter 4
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...
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.
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...
November 25, 2013 at 9:32 am
sreekanth bandarla (11/25/2013)
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...
November 25, 2013 at 9:24 am
Ratheesh.K.Nair (11/25/2013)
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.
November 25, 2013 at 8:31 am
mah_j (11/24/2013)
November 25, 2013 at 1:19 am
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,...
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...
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.
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...
November 24, 2013 at 6:05 am
Viewing 15 posts - 10,831 through 10,845 (of 49,566 total)