Viewing 15 posts - 121 through 135 (of 242 total)
Thanks guys for your input , lets not get confused by why I need it
March 16, 2018 at 6:02 pm
Yes I am manually running in SSMS, I am in windows group which has sysadmin, yet the query shows null in 'IsSysadmin' column, I plan to create a notification if...
March 16, 2018 at 2:44 pm
([server_principal_name] in (select name from sys.syslogins where sysadmin=1))
March 12, 2018 at 1:45 pm
1) check always-on is enabled in SQL configuration manager or run SELECT SERVERPROPERTY ('IsHadrEnabled');
2) check you are local admin on all nodes
3) check cluster permission by right...
March 12, 2018 at 1:24 pm
March 9, 2018 at 2:27 pm
run the below script to find out if you need more temp files.
ummm.. do you need enable traceflag 1118 ?
USE Master
GO
SET NOCOUNT...
March 9, 2018 at 1:40 pm
you can probably avoid additional resources used by power-shell by simply mapping the drive on the destination server through tsql and restore the backup, you do not even need to...
March 9, 2018 at 1:31 pm
well I hope it works for you, I personally like to keep the audit data in separate files, the reason being is (1) I can manage audit myself, what ever...
March 9, 2018 at 1:17 pm
I doubt you can do anything about it, there is a reason it is called 'Managed' backup
March 7, 2018 at 8:33 am
not sure where to look, but may be you can create a startup procedure to ensure audit is enabled when sql comes up, I am not sure if it will...
March 5, 2018 at 10:17 am
Well I have a database where owner of db_datareaer and db_datawriter is dbo, not sure why is that (some genius DBA I suppose), I want to fix it however I...
February 26, 2018 at 10:49 am
back to original question as to whats going on .. good luck
February 21, 2018 at 2:22 pm
thanks, it works
select a.*,b.* from errors a, errors b where a.logentry like 'Error:%' and b.rowid=(a.rowid + 1) order by a.entrytime desc
February 20, 2018 at 9:28 am
Viewing 15 posts - 121 through 135 (of 242 total)