Viewing 15 posts - 1,411 through 1,425 (of 2,897 total)
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...
May 19, 2010 at 8:07 am
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...
May 18, 2010 at 12:08 pm
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...
May 18, 2010 at 9:36 am
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.
May 18, 2010 at 9:21 am
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...
May 17, 2010 at 11:50 pm
Mad-Dog (5/16/2010)
May 16, 2010 at 6:48 pm
joemai (5/13/2010)
- 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...
May 14, 2010 at 8:46 am
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...
May 14, 2010 at 7:55 am
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...
May 13, 2010 at 11:55 am
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)
May 12, 2010 at 11:27 am
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...
May 10, 2010 at 3:01 pm
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...
May 10, 2010 at 2:37 pm
Why didn't you just use detach, move, attach ?
May 8, 2010 at 7:13 am
If the issue is in SQL code, you can use COLLATE to convert one to the other:
select * from DB_CollationA..TableA A
join DB_CollationB..TableB B on A.Fld1 = B.Fld1 collate Latin1_General_BIN
May 7, 2010 at 12:58 pm
I assume blocked by t-log backups accessing the same tables .... Haven't verified it though.
May 7, 2010 at 11:03 am
Viewing 15 posts - 1,411 through 1,425 (of 2,897 total)