Forum Replies Created

Viewing 15 posts - 15,226 through 15,240 (of 49,552 total)

  • RE: transactional Replication- Two log files

    muthyala_51 (12/14/2012)


    When compared to yesterday's both the files are of same size(149 GB).

    So, despite you asking several times why the files are growing simultaneously, they're actually not growing?

    I added space...

  • RE: transactional Replication- Two log files

    muthyala_51 (12/14/2012)


    As far as I know backup log truncates the log and we can reuse it.

    Correct. Truncation meaning 'mark 0 or more portions of the log reusable', it does...

  • RE: DBCC Commands

    Hemant.R (12/14/2012)


    DBCC shrinkfile(file_id ,size) to shrink file

    I would certainly hope shrink isn't a 'most frequently used command', as one should not shrink database files without good reason.

    DBCC Inputbuffer can be...

  • RE: INDEX

    Bear in mind, if you're writing a script to identify indexes that need rebuilding, you want those filters in. You may well want the size filter to be larger than...

  • RE: index in sql server

    Jason-299789 (12/14/2012)


    SQL server doesnt automatically create indexes, except in certain cicumstances such as when you define Primary Key, Foreign Key and Unique Key's.

    Primary key and unique constraint only. Creating a...

  • RE: When AutoShrink will occur in SQL server 2008?

    sanket kokane (12/13/2012)


    GilaMonster (12/13/2012)


    saranya.priyadharshini (12/13/2012)


    How i Can recover Free space?? Highly Suggest me!!

    DBCC ShrinkFile. There's no other way (other than copying the data to a new DB and dropping the...

  • RE: To drop all tables from a database

    Probably be faster to drop the database and recreate it.

    This will generate the drop statements for all tables and procedures, you can copy the output to a new window and...

  • RE: When AutoShrink will occur in SQL server 2008?

    saranya.priyadharshini (12/13/2012)


    How i Can recover Free space?? Highly Suggest me!!

    DBCC ShrinkFile. There's no other way (other than copying the data to a new DB and dropping the old one)

    Let me...

  • RE: INDEX

    rajeshjaiswalraj (12/13/2012)


    Then it was LESS THEN 30% so i did

    ALTER INDEX nc_index

    ON EMPLOYEE REBUILD

    then when i again execute the above script for average index fragmentation levels for finding...

  • RE: FILEGROUP restore from DB to DB

    Not possible. Filegroups can't be restored to a different DB to the one they were backed up from.

    SSIS. Bulk insert. bpc.

  • RE: Datetime Syntax

    tanvishriya (12/13/2012)


    Tried it as well.

    CREATE TABLE T1

    (

    CreateDate DateTime2 not null

    )

    GO

    INSERT INTO T1 (createdate)

    VALUES ('2012-03-09 12:34:45:567')

    GO

    throws an error: cannot convert datetime to string

    Sure there's no other code anywhere? Nothing else in...

  • RE: Are the posted questions getting worse?

    GSquared (12/13/2012)


    The Dixie Flatline (12/13/2012)


    Budget cuts are the reason the first Death Star didn't have a grate or something covering the exhaust port.

    Really? I always just assumed a Jawa...

  • RE: Enhanced Variable Declaration in SQL Server 2005 Mode

    Michael Fried (12/13/2012)


    I would argue that SQL Server is not doing this since the query syntax is different in the lower version than the newer version. It is fact...

  • RE: Login/User Corruption

    Not corruption.

    When the logins were created on the QA server they were not created with the same SID as the production server. Hence when the backup is restored, the SID...

  • RE: restore db from multiple diff vs last diff

    Let me put it this way:

    A differential backup contains all the changes since the last full backup. It has no reference, checks, no knowledge of what changed since a previous...

Viewing 15 posts - 15,226 through 15,240 (of 49,552 total)