Forum Replies Created

Viewing 15 posts - 166 through 180 (of 1,412 total)

  • RE: Reading from the Transaction Log ....?

    Either that, or simply use one of the 3rd party tools mentioned above. Then you will not need to audit constantly and decrease performance. But you cannot do it with...

  • RE: Extent lock

    Extent numbers always refer to the first page (of 8) in the extent. So an extent number % 8 always equals 0.

  • RE: sql server 2005 is not starting

    With it being a beta (even if an RC) I would probably reinstall and see if that helps.

  • RE: Extent lock

    And another alternative is of course DBCC EXTENTINFO ('DBNAME')

  • RE: Extent lock

    How about:

    DBCC PAGE (dbid, 1, 408680, printopt)

    DBCC PAGE (dbid, 1, 408681, printopt)

    DBCC PAGE (dbid, 1, 408682, printopt)

    DBCC PAGE (dbid, 1, 408683, printopt)

    DBCC PAGE (dbid, 1, 408684, printopt)

    DBCC PAGE (dbid, 1,...

  • RE: sql server 2005 is not starting

    I found this KB support article that might have a solution. Although this discusses upgrading 2000 to 2005 the solution might still be applicable for your problem.

  • RE: Row Size

    Like I said, it is not possible to change the page size, and thereby row size, in SQL Server. Why do you want to do this? There is probably a...

  • RE: Row Size

    What do you mean exactly? If you are referring to the maximum size possible, that is not something you can change. Page size in SQL Server is fixed, and a...

  • RE: Search date between mm1/yyyy1 and mm2/yyyy2

    But this query would not be able to use an index seek to find results. A where clause must be in a SARG format, that is column operator constant. The...

  • RE: Installing VS .NET 2005 Beta 2 and SQL SERver 2005

    Also, if you are going to install VS2005 Beta2 and SQL Server 2005 April CTP, then uninstall everything SQL, VS and .NET related from the control panel -> Add/Remove Programs....

  • RE: sql server 2005 is not starting

    What security settings did you update in the OS? Did you change any policies concerning the account SQL Server runs as? Which account is it running as?

  • RE: Indexing Questions

    Uhm, the columns of the clustered index are always part of all non-clustered indexes. A covering index is a non-clustered index that includes all the columns (with the help of...

  • RE: S2K & S2K5 on same server?

    Yes, absolutely.

  • RE: Reading from the Transaction Log ....?

    Well there is no supported way of doing this. The log file format is proprietary to Microsoft and it is not documented. There is an undocumented command to output some...

  • RE: Reading from the Transaction Log ....?

    You should take a look at 3rd party tools such as Log PI or Lumigent Log Explorer.

Viewing 15 posts - 166 through 180 (of 1,412 total)