Forum Replies Created

Viewing 15 posts - 766 through 780 (of 2,387 total)

  • RE: xp_sqlagent_proxy_account Error

    quote:


    Error executing extended stored procedure: Specified user can not login


    Has this user been granted...

  • RE: Row chaining?

    Each data page has a 96-byte header containing system information such as the identifier (ID) of the table that owns the page. The page header also includes pointers to the...

  • RE: Record Number

    select IDENTITY(int, 1,1) AS RecNum, * INTO #NewTable from yourtable

    select * from #NewTable

  • RE: MSDE

    From KB 321518.

    "MSDE 2000 is a data engine that is built and based on core SQL Server technology. With support for single- and dual-processor desktop computers, MSDE 2000 is a...

  • RE: Corrupt Table

    From BOL.

    "DBCC CHECKTABLE checks that:

    Index and data pages are correctly linked.

    Indexes are in their proper sort order.

    Pointers are consistent.

    The data on each page is reasonable.

    Page offsets are reasonable. "

    DBCC...

  • RE: Shrinking Tempdb

    quote:


    we still find it filling up all the additional space on the server (mostly in the transaction log).


  • RE: Transactions locking database

    I wouldn't simply remove BEGIN and END TRANSACTIONS. BEGIN TRANSACTION represents a point at which the data referenced by a connection is logically and physically consistent. If errors are encountered,...

  • RE: Help with logical name error 8985

    Before issue shrink command, make sure your current database is the correct one you want to shrink.

    use pubs

    go

    dbcc shrinkfile (pubs_data, 10)

    go

  • RE: Corrupt Indexes

    You may have to bcp data out and in.

  • RE: Transaction Log Growth

    You can configure Alert to send out net message/pager/email to appropriate personnel.

  • RE: Corrupt Indexes

    quote:


    What are the possible reasons why an index becomes corrupt?


    Hardware Disk Subsystem failure.

  • RE: Transaction Log Growth

    Use sp_helpfile or statement from the sp_helpfile below.

    select name, fileid, filename,

    filegroup = filegroup_name(groupid),

    'size' = convert(nvarchar(15), size * 8) + N' KB', ...

  • RE: Net-lib : TCP/IP

    quote:


    2003-12-16 21:09:11.64 server Attempting to initialize Distributed Transaction Coordinator.

    2003-12-16 21:09:11.66 server Failed to obtain TransactionDispenserInterface: Result Code = 0x8004d01b


  • RE: Which Index Is Beter as Clustered ?

    It depends on how your application query the table.

    I would create clustered index on

    Queries that return large result sets

    Columns used in order by or group by queries

    Columns used in table...

  • RE: Transaction Log Growth

    Setup an SQL Server Performance Condition Alert on counter Percent Log Used in SQL Server Agent.

    Or create script to get log file size and schedule it to run regularly.

Viewing 15 posts - 766 through 780 (of 2,387 total)