Forum Replies Created

Viewing 15 posts - 39,571 through 39,585 (of 49,571 total)

  • RE: Include a column to a already existing Non Cluster Index...

    Change the primary key to clustered. Is there any good reason it was created as a nonclustered index in the first place?

  • RE: Row Size

    mithun.gite (4/23/2009)


    ok means the max row size is 8060 bytes and anything more than then resides off the page , right...

    No.

    The max row size is 8060 bytes and creating a...

  • RE: Trigger CLR

    Post the trigger code and the T-SQL 'shell' for it?

  • RE: Row Size

    create table my table (str1 varchar(3000),

    str2 varchar(3000)

    str3 varchar(3000)

    )

    it created the table and i entered 3000 chars in all columns and it working fine.

    Yup. Varchar are variable length character data. See...

  • RE: Row Size

    8060 bytes.

    You can get around that by using one of the MAX data types that are stored off page. Also variable length character data can be pushed off page (row...

  • RE: A strange problem with 'select' performance

    Anytime that you use a unicode constant, the query will be slower. That's because of implicit conversion that's required on the column which prevents any index seeks.

    None of the...

  • RE: Please provide me the drawbacks for Log Shipping and Mirroring ?

    CH&HU (4/23/2009)


    5. Yes we are using the secondary server for pulling SharePoint & reports.

    I'm not sure you can run sharepoint against a database snapshot. Have you tried?

    The mirror db...

  • RE: Using STATISTICS_NORECOMPUTE option to speed up data loading

    Turning that off is not the same as dropping the indexes. All you gain by turning that option off is that SQL won't automatically update statistics if it thinks that...

  • RE: Transaction Log

    Query sys.databases. What does the log_reuse_wait_descr column say for that database?

  • RE: Restore with no full backup available

    Differentials are based on the previous full backup. If you do not have the last full backup that ran before the differential, you cannot use that differential backup.

    If you have...

  • RE: Drop Index problem MSS 2008

    Drop all the foreign keys that reference that table. Drop the unique index. Recreate the foreign keys.

  • RE: Create SP with Invalid Syntax

    homebrew01 (4/22/2009)


    I have an obsolete Stored procedure, and I would like to put some comments in it for future reference, but I can because of "Ambiguous Column Names" errors. I...

  • RE: Transaction Log

    Query sys.databases. What does the log_reuse_wait_descr column say for this database?

  • RE: Are the posted questions getting worse?

    In previous years you've been able to register right up until the start of the conference. It just gets progressively more expensive as you get closer to the conference

  • RE: Backup of transaction log tail generates error

    Rather try doing the backup from a query window. Have object explorer disconnected.

    Backup log ... to disk ... WITH NO_truncate, no_recovery

Viewing 15 posts - 39,571 through 39,585 (of 49,571 total)