Forum Replies Created

Viewing 15 posts - 1,411 through 1,425 (of 2,900 total)

  • RE: Need help on dynamic SQL

    It might help to say what the error is

    I think you need to declare @maxno inside the dynamic sql

  • RE: Backup vs Detach migrating large databases (from 2000 to 2005)

    I would take a FULL backup as a precaution, then use detach/attach. It's probably faster since you bypass the backup & restore steps and only need to do the file...

  • RE: Transferring data from MySql to MS SQL Server

    Not directly relevant, but when converting MySQL to SQLServer, I used SQL_Maestro as an interface to dump out the tables for import into SQL .... FWIW

  • RE: Deleted store procedure

    Default trace doesn't capture Stored Proc create & drop ... according to my test just now. The default trace never seems to have what I need, so I set up...

  • RE: Transaction log backup confirmation

    Something like this will give you a history of backups. You can specify the database & time period if you want.

    SELECT sysdb.name, bkup.description, bkup.backup_finish_date,

    case

    when type='D' then...

  • RE: SQL Backup

    Sounds like the constraint is your backup location. 10 G is pretty tiny these days.

    You could copy your backups to a tape rotation so current backups exist in 2...

  • RE: Shrinking Log Files -Best Practice

    How about swtiching to Full recovery and taking regular T-log backups ? You may not need the recoverability, but it might manage your t-logs better.

  • RE: SQL Backup

    What sizes are the databases ?

    How critical are the databases ? For my prod dbs, I backup logs every 15 min or so.

    How much space do you have to store...

  • RE: call procedure from another procedure

    Mad-Dog (5/16/2010)


    i wrote that i want to fire the 3 min proc inside the 2 min schedule sql agent job but the proc will not interfere with the 2 min...

  • RE: Purging huge table, good approach

    joemai (5/13/2010)


    I normally do this:

    - Create the exact same table structure with the original one and give it new name

    - Copy only data that you need only over to this...

  • RE: Differential Backups

    You could run something like this to look at the backup history and verify the files used for the restore match your backups.

    SELECT sysdb.name, bkup.description, bkup.backup_finish_date,

    case

    when...

  • RE: Purging huge table, good approach

    I do something similar, updating old records to set IMAGE data to NULL to free up space. It's fairly slow, but it can run 24/7 without affecting anyone.

    Add your own...

  • RE: snapshot agent - replication

    I think that when you create the subscription, you also create & schedule the pull or push of the snapshot. (I haven't used replication in a while)

  • RE: Maintenance Cleanup Task Is not working

    Nothing jumps out. It's not something silly like you're path is to the TRN files but you're specifying BAK files ?

    I have not used "include fist-level subfolders". Is it...

  • RE: Maintenance Task failing with UNC path in 2005 64 Bit

    Worked ok when I just tried it: 9.0.4053

    Maint plan wrote a backup to a UNC path, then deleted from the same UNC path.

    So if everything else is exactly the...

Viewing 15 posts - 1,411 through 1,425 (of 2,900 total)