Forum Replies Created

Viewing 15 posts - 196 through 210 (of 335 total)

  • RE: Manual growth of data and log files

    OOPS, type error:

    I recommend autoshrink, with a maxfilesize. This prevents you from messages like you get and you'll have the guarantee the file won't blow up your disk.

    It should be:

    I...

  • RE: TLog shrinking process sql 2000

    The size of your logfile has no effect on your full backup, neither has the recovery model. The full backup is a copy of your data and indexes (actually what's...

  • RE: Manual growth of data and log files

    If your initial size has gone back to 1, you probably have autoshrink on. If you don't allow autogrowth (which i don't recommend), don't enable shrink (you'll only have the...

  • RE: Addidng a Data File

    You can have multiple filegroups and multiple datafiles in a filegroup, but you must have a filegroup called primary with at least one datafile.

    The first datafile has the extension of...

  • RE: Determine fragmentation of HEAP table

    Are forward pointers always limited to the same physical file, or can you point to a location in another file (within the same filegroup)?

  • RE: How table reserve space?

    Table Name Rows Reserved (KB) Data (KB) Index Size (KB) UnUsed (KB)

    Table1...

  • RE: # of transaction

    Is seems that NIManagementDB is watching your transactionlogfile and registers when this file needs to expand. If this file expands > 4 times in an hour(?), it's complaining (This is...

  • RE: system freezing

    Your disk is becoming a bottleneck:

    SQL Server has encountered 16 occurrence(s) of I/O requests taking longer than 15 seconds to complete on ...

    Several processes are struggeling for I/O completion on...

  • RE: Backup issues

    Yes, that should work. Make sure you add the NORECOVERY parameter to eacht restore statement, until you're at the latest logfilebackup. Restore that backup with the RECOVERY parameter.

    I stronly advise...

  • RE: How to look for new patches and applied them

    CU9 is already available and according to Microsoft, CU10 is currently build :hehe:

    Vote for SP3! 🙂

    Tip: to check if your SQL is up-to-date: http://support.microsoft.com/kb/937137

  • RE: Backup issues

    The recovery model doesn't affect the full backuptime, it only eliminates the need for logbackup in case you have a SIMPLE recovery model.

    If you're running out of backup time, you...

  • RE: TeraByte DB (15+TB): Partitioning / DataWarehouse

    Very interesting question!

    Here are my 5 cents:

    - Use a 64bit Enterprise environment

    - Use a SAN with a lot of disks

    - Which backup solution are you gonna use? (backuptime,...

  • RE: Backup Script

    Make sure you download the freeware version.

    SQL Express doesn't have a job scheduler. SQLSafe comes with an commandline utility and several stored procedures. So you have the choice of scheduling...

  • RE: Determine fragmentation of HEAP table

    Thanks for your input. Thus: forwarding pointers can only occur on heaps, while page splits only occur on indexes?

  • RE: Free SQL Server 2008 ebook

    Other tip: While your PDF is on your screen, go to your internet cache directory and copy the PDF file

Viewing 15 posts - 196 through 210 (of 335 total)