Forum Replies Created

Viewing 15 posts - 931 through 945 (of 2,900 total)

  • RE: Moving Indexes to a Seperate Filegroup

    Steve Jones - SSC Editor (4/28/2011)


    One thing to keep in mind, if you are looking for partial database recovery in a DR situation, moving the indexes away from the table...

  • RE: Delete Query

    Ninja's_RGR'us (4/28/2011)


    Himmat Singh (4/28/2011)


    1)use db_name

    2) set the database recovery to simple - sp_dboption 'db_name', 'trunc. log on chkpt.', true

    3) write a store produre to delete about 10000 per loop....

  • RE: Delete Query

    Ninja's_RGR'us (4/26/2011)


    The best alternative is to delete in smaller chunks and run tlog backups within the loop.

    Yes, that is how I do it, with no problems. It also gives...

  • RE: Moving SQL volumes - better to 'take offline' or..

    Don't forget full backups beforehand.

  • RE: Urgent !!!.. Rollback from ldf?

    Going forward, you can use something like this to identify databases that have not been backed up. Perhaps put it into a job with an email alert

    SELECT B.name as...

  • RE: file extension to clean

    Also, make sure you are on at least SP3. Earlier versions have various Maint Plan bugs.

  • RE: Online Indexing

    Probably silly question, but did you specify "ONLINE" in your statement even though you have enterprise edition ?

  • RE: Add Tables to Replication

    I think you could use the GUI and select the tables with check marks.

    Is that what you're asking ?

  • RE: How to tell what is using the 'sa' account

    Jack Corbett (4/13/2011)


    Change the password and see who screams!:-P Then you can also fix the security holes in those applications. I'm only partly joking.

    You're messing me up with...

  • RE: transaction backup job in sql 2008

    I think you should apply at least SP3. SP4 has been out a while now.

  • RE: transaction backup job in sql 2008

    What Service Pack are you on ?

    Some 2005 maintenance plan problems were fixed with SP3. Not sure of the specifics though.

  • RE: Table conparison

    I would not suggest importing data into production that is not production data. Better to export from production to a test area.

    For your query, just specify the database name:

    select *...

  • RE: database size control

    I assumed an active production database would be full recovery, so I added #2 as additional suggestion.

    With simple recovery, you don't mind the possibility of losing all changes made since...

  • RE: Yet another question about the resource DB

    use mssqlresource

    exec sp_helpfile

  • RE: Restore a Windows of data

    Redgate has a data compare tool you could consider.

    Or write queries comparing all the fields in all the table affected.

    Give customer read-only permission.

Viewing 15 posts - 931 through 945 (of 2,900 total)