Forum Replies Created

Viewing 15 posts - 976 through 990 (of 993 total)

  • RE: Determining objects in secondary datafile

    This is the mechanism that the allocation code uses to determine which file to allocate from next when a filegroup contains multiple files. It ensures that allocations are fairly distributed...

  • RE: Determining objects in secondary datafile

    No - most objects will have data stored in both files - SQL Server (loosely) round-robins allocations from all files in a filegroup (I can go into details of how...

  • RE: Storage space for text datatye

    1. Just the way the design works. Any value that doesn't fit on the rest of a page will have a new page allocated for it.

    2. Its really not possible...

  • RE: Storage space for text datatye

    Not always. There's a complicated algorithm which determines whether to use a new page or not. For instance, inserting two 2k values into an empty table will use a single...

  • RE: Index Backup in Full Recovery Mode

    They're minimlly logged (just the page allocations to allow recovery/rollback to functional correctly) and then they're appended as you describe.

  • RE: Index Backup in Full Recovery Mode

    Basically, yes.

  • RE: Regarding shrinkdb and # table

    Why are you shrinking tempdb? If it grew to a certain size that's because the query workload you have needs that much tempdb space to run in. If you shrink...

  • RE: log data

    Hussam - please don't start a new thread to reply. As I've already explained - this data isn't captured in a log file anywhere. Look up Profiler in BOL.

    Thanks

  • RE: BCP Timeout problems

    Mostly likely the remote query timeout is still set to 600 seconds and your bcp is running longer than that. Lookup 'remote query timeout option' in BOL for details of...

  • RE: Storage space for text datatye

    The storage jumps when you hit 4k per text value because only a single text record of that size can be stored on a page (remember a page is 8192...

  • RE: Log Files

    Are you talking about the transaction log? That info isn't stored in the transaction log. Have a look at Profiler in BOL.

    Thanks

  • RE: I/O error 33 (Error: 823, Severity: 24, State: 4)

    Because your DB has gone suspect, its possible the virus scanner (or whatever was lockign the file) has caused SQL Server to throw the DB offline.

    Can you post the output...

  • RE: DBCC SHRINKDATABASE

    The basic shrink operation moves data below the shrink threshold you've set and then releases the free portion of the file to the OS.

    The NOTRUNCATE option simply doesn't release this...

  • RE: Index Question

    Definitely read our whitepaper.

    When you say they require reindexing, is it just because the fragmentation has gone up or because the fragmentation is actually causing range scans to slow down?

    Are...

  • RE: Problem with Log File!

    In full recovery mode, the log file is also truncated when you do a log backup - was this the case in those two instances?

Viewing 15 posts - 976 through 990 (of 993 total)