Viewing 15 posts - 1 through 15 (of 24 total)
Thanks for the vote of confidence Jeff - taking up the pen on the topic of permissions is something I'll have to deliberate over. Hopefully I can find some...
May 12, 2016 at 9:21 pm
Thanks for eyeballing this Jeff.
Yes, when executing within the context of the 'dev_role' role the following 2 statements fail as intended:create table foo.bar (i int);
execute as user = 'dbo';
And the...
May 11, 2016 at 3:43 pm
Me think know ansur:
Not quite what I was going for to begin with, but these 2 solutions are probably more sensible than [font="Courier New"]GRANT ALTER to dev_role[/font]:
Solution 1 (no explicit...
May 10, 2016 at 2:57 pm
Thanks - that's some great info to chew on! (I'm only seeing 1 link..?)
However, it doesn't quite seem to answer my question on the mechanics of how it maximizes...
September 2, 2015 at 9:46 am
Eirikur Eiriksson (8/25/2014)
jjturner (8/25/2014)
Eirikur Eiriksson (8/25/2014)
jjturner (8/25/2014)
So further to the point, I'm having this DEV recovery model switch over to FULL a...
August 25, 2014 at 1:20 pm
Eirikur Eiriksson (8/25/2014)
jjturner (8/25/2014)
So further to the point, I'm having this DEV recovery model switch over to FULL a number of days...
August 25, 2014 at 12:57 pm
Yes, apologies for the tacit generalization (backup ~ backup/restore)
So further to the point, I'm having this DEV recovery model switch over to FULL a number of days after it got...
August 25, 2014 at 12:49 pm
Yes, thanks for the sanity check -
Actually I'm running Mr. Hallengren's scripts on PROD. 1 weekly full, daily diff, hourly log -- works a charm!
The other thing to note,...
August 25, 2014 at 12:35 pm
Lynn Pettis (8/25/2014)
August 25, 2014 at 12:22 pm
Thanks Lynn - I'll have to do some more digging then. I'm still suspicious though since no one else would think to alter the RM and I definitely didn't...
August 25, 2014 at 12:18 pm
aha - that's sneaky!
Thanks for pinning this down for me John!
August 7, 2014 at 7:25 am
Thanks folks for looking into this for me -
I'm using Ola Hallengren's backup scripts and the @CopyOnly switch has not been altered from its default of 'N':
sqlcmd -E -S $(ESCAPE_SQUOTE(SRVR))...
August 7, 2014 at 7:07 am
use master;
go
restore database new_loc_testdb
from disk = '\\backup_dir\full\prod_full_20140803_233000.bak'
with
--replace
checksum
,move 'prod01' to 'e:\temp_restore\data01.mdf'
,move 'prod02' to 'e:\temp_restore\data02.ndf'
,move 'prod03' to 'e:\temp_restore\data03.ndf'
,move 'prod04' to 'e:\temp_restore\data04.ndf'
,move 'prod_log' to 'e:\temp_restore\testlog.ldf'
,norecovery
go
restore database new_loc_testdb
from disk = '\\backup_dir\diff\prod_diff_20140806_233000.bak'
with
checksum
,move 'prod01' to 'e:\temp_restore\data01.mdf'
,move...
August 7, 2014 at 5:01 am
Linked Server, O Linked Server, wherefore art thou Linked Server? Be some other connection design! :crazy:
Nice post Thomas, this is sorely needed information. Thank you!
August 5, 2014 at 5:26 am
Viewing 15 posts - 1 through 15 (of 24 total)