Forum Replies Created

Viewing 15 posts - 856 through 870 (of 1,065 total)

  • RE: Restore could not start DB.

    Table error: Object ID 293576084, index ID 0, page (1:636), row 15. Test (columnOffsets->offTbl [varColumnNumber] >= priorOffset) failed. Values are 46 and 130.

    Server: Msg 8928, Level 16, State 1, Line...

  • RE: Still shows scan

    When <> (not equal to) condition is used table scan happens because all the records are to be compared.

  • RE: Restore could not start DB.

    Is there any explanation in the SQL Server Log?

    I think the orginal database (in SS2K) has issues. Have you run DBCC CHECKDB before taking backup?

  • RE: Advantages and Disadvantages of SQL EXPRESS

    Can anyone tell me what are the advantages and disadvantages of SQL EXPRESS please.

    1. Database size cannot be more than 4 GB

    2. More than 1 CPU is not used

    3....

  • RE: Replication - subscriber has own independent data

    SQL Server B (2005 EE), in Domain B, will also receive data from a custom app - but this should be separate data to the data being received by the...

  • RE: COPY_ONLY(BACK UP & RESOTRE)

    Just USE master database instead of the one you want to restore.

    use master

    go

    BACKUP DATABASE DATA_SAMPLE TO DISK='E:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\DATA_SAMPLE.BAK'

    RESTORE DATABASE DATA_SAMPLE FROM DISK='E:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\DATA_SAMPLE.BAK' WITH NORECOVERY

    You...

  • RE: Diff Between SPID and Process ID

    Profiler shows SPID and Client Process ID.

    If AppliationName is not mentioned in the ConnectionString, you can use Client Process ID to detect it (using Task Manager as mentioned in the...

  • RE: Diff Between SPID and Process ID

    Can anyone tell me the difference between SPID and Process ID?

    SPID means Server Process ID.

    Just Process ID can mean Client Process ID as well.

  • RE: Upgrading from developer edition to enterprise edition

    Setup will upgrade only from lowever version to higher version (e.g. SQL Server 2000 to 2005).

    To upgrade only the edition, you should run following command:

    start /wait setup.exe ADDLOCAL=SQL_Engine INSTANCENAME=MSSQLSERVER UPGRADE=SQL_Engine...

  • RE: how to create a job in sql server 2005

    i want to execute it automatically for that job concpt have to use right ? am new to job concept ! whether have to create a job to execute the...

  • RE: COPY_ONLY(BACK UP & RESOTRE)

    how to configure copy_only(Back up & Restore i read some articals) that command eaisly contionous back up in sql server 2005. Colud plz guide to me and how configure copy_only...

  • RE: Index Fragmentation

    Is it nonclustered index on a heap (= table without a clustered index)?

    Is it a very small table, with only few pages?

    What is the fillfactor?

  • RE: instsalling SQL Server 2005 named instance

    shailesh (12/19/2008)


    when I am trying to connect locally it is connecting to SQL server 2000.

    So i can't enjoy sql 2005 features.

    Shailesh,

    You don't have to uninstall or install anything....

  • RE: Property Owner is not available for Database

    Set the database owner using sp_changedbowner

    For example:

    use DatabaseName

    go

    sp_changedbowner 'sa'

    go

    After that you will be able to access the database properties.

  • RE: SQLServer2005-KB953752-x86-ENU.exe

    i get the following error : "The following unexpected error occurred: "

    Could you post the complete message?

    Also check ...\Setup bootstrap\LOG\Summary.txt

Viewing 15 posts - 856 through 870 (of 1,065 total)