Viewing 15 posts - 1,621 through 1,635 (of 4,745 total)
unless the 20 databases have something in common you can use in a where clause on sys.databases just execute the 20 relevant statements from the full list produced by the...
July 12, 2011 at 4:16 pm
if its all your user databases:
select 'alter database '+name+ ' set recovery full' from master.sys.databases where database_id > 4
execute in text mode
copy and paste results to another window and run
then...
July 12, 2011 at 3:11 pm
I'm guessing neither does the app owner. 🙂
the end result would be the same
July 12, 2011 at 10:43 am
thats the least reliable method of trying to copy a database. Any reason why you cannot use backup\restore?
July 11, 2011 at 3:58 pm
Welsh Corgi (7/10/2011)
george sibbald (6/22/2011)
why don't you want to use a DDL trigger?
I was wondering how you can prevent a member of the db_owner from from disabling or altering the...
July 10, 2011 at 4:57 pm
GilaMonster (7/8/2011)
george sibbald (7/8/2011)
July 8, 2011 at 2:53 pm
tfifield (7/8/2011)
GilaMonster (7/8/2011)
Jayanth_Kurup (7/7/2011)
July 8, 2011 at 1:48 pm
At least let them know their process is sub-optimal.
thats the polite way of putting it.
July 8, 2011 at 1:13 pm
though didn't you originally say you were trying to do a restore?
July 8, 2011 at 10:44 am
my apologies didn't know that.
Yes there is a risk with that. One day the file just won't attach and you will have to go through a complex hack that risks...
July 8, 2011 at 10:42 am
.. and copy data and log files (you said you had to do a single file attach)
July 8, 2011 at 9:40 am
nice one guys, I was worried you would all pile in but all the answers were professional and helpful. You have all obviously grown as people. 🙂
extra point to Craig...
July 8, 2011 at 3:08 am
DBCC timewarp specialists please.......
http://www.sqlservercentral.com/Forums/Topic1138604-146-1.aspx?Update=1
July 7, 2011 at 5:10 pm
er, sorry, no.
July 7, 2011 at 5:08 pm
are you copying the backup over an existing file of the same name? If so, try deleting the file on the 2008 server first. then recopy from sql2005.
I have found...
July 7, 2011 at 3:23 pm
Viewing 15 posts - 1,621 through 1,635 (of 4,745 total)