We have a product which uses a database and whenever a major release is done one of the upgrade scripts used on the database calls one of our stored procedures whose job is to drop and then recreate the fulltext index thus ensure any changes (i.e. new columns that are indexed) in the new release get installed.

The problem is that if our client has set up the database to be full recovery mode then this will fail at the point at which it tries to recreate the fulltext index.

To ensure the upgrade instructions are as simple as possible I don't want the IT guy doing it to have to do anything other than run the set of scripts according to there filenames, (i.e. run 001 - xxx.sql, then run 002 xxx.sql etc...).

So the idea I thought to try was for the SP that drops/recreates to do the backup of the transaction log if the database is set to full recovery mode for them by backing up to the same location as the last transaction log backup was done. The problem is how do you find out the last location?

I've searched and found scripts that indicate the use of sys.sysdatabases and msdb..backupset but those tables don't seem to have the information I need.

Any ideas? Is it even possible?

link|improve this question

79% accept rate
feedback

1 Answer

Should be in msdb..backupmediafamily, physical_device_name column

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.