Forum Replies Created

Viewing 15 posts - 571 through 585 (of 1,539 total)

  • RE: Push Replication

    messenjahofchrist (8/4/2009)


    I want to set up one to many replication. If the table does not exist at the subscriber for the first synchronization does sql create it automatically? If not...

  • RE: Table Size

    quoting from BOL

    A shrink operation does not preserve the fragmentation state of indexes in the database, and generally increases fragmentation to a degree.

    This means fragmentation will be higher after...

  • RE: truncate the transactional logfile

    charipg (7/30/2009)


    how to truncate the transactional logfile?

    Gianluca has a valid question.

    You may want to search for Backup Log with Truncate_only/DBCC SHRINKFILE in BOL. But you should understand the consequences first.

  • RE: Table Size

    Nero (7/29/2009)


    Hi all,

    Can any one tell me how to get table size banker? to which optimal size it should to shrink?

    i have table with rows around 20 lakh.

    Can u explain...

  • RE: Taking Backup from remote server database

    arun (7/29/2009)


    I need to take backup from remote server database to my local machine. I searched on google and could not found out. Please let me know how do I...

  • RE: Which one runs faster?

    The link provided by Gail explains clearly on why count(*) would be faster than count(column). Thanks for writing that article!!

  • RE: fillfactor

    homebrew01 (7/29/2009)


    I think you meant: A fill factor of 70 means 30% of space within the data page will be kept vacant

    Thanks for the correction 🙂

  • RE: Filtering WHERE on a field not in the DB

    drew.allen (7/29/2009)


    ps (7/29/2009)


    select colA, colB, colC, colD=colA+colB+ colC from mytable where colD=123

    I recommend that you TEST your solutions before posting, even for something apparently this simple. It helps no...

  • RE: script for finding the backup path

    murthykalyani (7/29/2009)


    There is no such table by the name backupfile in msdb database.

    Ram[/QUOTE]

    The table is present.

    Please query by joining these tables backupset and backupmediafamily and you can get...

  • RE: script for finding the backup path

    query the backupfile table in msdb database and see physical_name column if it gives the backup destination(not sure)... i cant test it right now coz of some issues....

  • RE: script for finding the backup path

    Open the maintainence plan and click on view T-SQL to see where it's storing the backup files..

  • RE: Is there a way to delay a trigger.,

    sarvesh singh (7/29/2009)


    The reason i want to delay this is because the some of the fields gets updated after the audit process which is done in Java. My Java knowledge...

  • RE: count of rows in table is not accurate.

    Thanks Gail. 🙂

    Definately i need to google more on this topic 😉

  • RE: Is there a way to delay a trigger.,

    i'm not sure whether waitfor is not allowed in a trigger. if it's so, you can call a dummy proc from the trigger. the proc would contain the code for...

  • RE: Size Limits?

    Doug (7/29/2009)


    What are the size limits on tables and database within sql 2005?

    16 TB for data file and 2 TB for log file, 524,258 TB for the database. There...

Viewing 15 posts - 571 through 585 (of 1,539 total)