Viewing 15 posts - 136 through 150 (of 468 total)
Maybe grant ddl admin, then DENY perms on the tables... It think that would work. In a car, so cant test presently. I guess you could use triggers,...
December 14, 2011 at 3:08 pm
You can generate the statements to grant permissions on existing objects by querying off the sys.objects table where object type is P (proc) like this:
print 'go'
print '--object level perms'
select 'GRANT...
December 14, 2011 at 12:28 pm
Another way to do this- if you have another SQL Server which is not Express edition, you can schedule maintenance jobs to run from that server.
December 12, 2011 at 1:01 pm
That's typical. Your reinedexing is causing higher than normal transaction volume.
Some people choose to switch to bulk-logged recovery for indexing operations, but if you have the space, you can...
December 12, 2011 at 12:57 pm
Can you please post the contents of the errorlog and the sqlagent.out... not just the error you think might be the problem, but the entire log around the time you...
December 12, 2011 at 11:16 am
I do something like this in Access07 .adp:
Dim Requestorid As String
Requestorid = Combo139.Column(1) 'for combobox... use .value for textbox
strsend = "exec PROCNAME @requestorid='" + Requestorid + "'"
CurrentProject.Connection.Execute strsend
December 12, 2011 at 9:37 am
I agree that scheduled job is the way I would go...I guess you could also use a logon trigger if you were looknig for an alternative approach.
December 12, 2011 at 9:11 am
logicinside22 (12/12/2011)
Like to know Best practices for Transaction Log you used for your enviornment.
Is it good to delete old transaction Log backup after having latest Full Backup and Differential...
December 12, 2011 at 8:39 am
You can also see "Agent XPs disabled" in SQL Server Configuration Manager... which is what I was assuming he was talking about... the suspense is killing me 😉
December 12, 2011 at 8:35 am
John Mitchell-245523 (12/12/2011)
December 12, 2011 at 8:20 am
abhishek_dwivedi03 (12/12/2011)
I had done a fresh installation...
December 12, 2011 at 7:59 am
looks like this is a known issue, addressed in a CU / SP2: http://connect.microsoft.com/SQLServer/feedback/details/585210/sql-server-2008-data-collection-execmasterpackage-timeout
December 12, 2011 at 6:44 am
just stumbled across sysmaintplan_logdetail and sysmaintplan_log from which I think I'll be able to pull the data. thanks just the same.
December 8, 2011 at 11:00 am
Elliott Whitlow (12/8/2011)
December 8, 2011 at 10:49 am
mpaulus-1000078 (12/6/2011)
December 6, 2011 at 5:53 pm
Viewing 15 posts - 136 through 150 (of 468 total)