Viewing 15 posts - 16 through 30 (of 71 total)
Its "by design"
Complete and utter failure as far as I am concerned. The SQL Engine that can register/de-register SPN's (if allowed), doesn't do this at least in...
June 20, 2016 at 10:22 am
Ditto. I do leave SSMS running for a few days, and I get it moaning at me. I've got 11GB of RAM free on my workstation and still it complains.
"An...
January 23, 2014 at 3:48 am
The VMWare hotfix is only applicable to Windows 2012 - this is now superseded by a MS patch http://support.microsoft.com/kb/2811670 - recently tested.
Sorry the access denied issue on Windows...
September 30, 2013 at 2:18 pm
Either the Group Policy change (though you can use Advanced Audit Policy Settings rather than "legacy" of Object Access and drill down further to not use "Audit Removable Storage" -...
March 22, 2013 at 11:27 am
Like you've and I've found, apparently the TRY CATCH statement can't catch the extended stored procedures errors:
It's a shame, same as when you catch a native backup failure...
March 22, 2013 at 11:17 am
+1 Lowell!
It makes my life so much easier this script. Great stuff.
September 11, 2012 at 3:27 am
Or this - doesn't drop users who own a schema
declare @sql nvarchar(max)
set @sql = ''
SELECT @sql = @sql+
'
print ''Dropping '+name+'''
execute master.dbo.sp_revokedbaccess '''+name+'''
'
FROM
sys.database_principals
WHERE type...
July 29, 2011 at 5:25 am
Ok I am English from England with a B grade A-Level in English Literature (ok a few years ago, but not that many).
I didn't notice the errors immediately.. but I...
April 14, 2011 at 2:50 am
Oleg,
Thanks for the heads up and clear explanation, does make a lot of sense. Will probably remember that one for a long time. 🙂
Eugene,
Whilst it's not neccessary to have...
August 5, 2010 at 9:57 am
I may be getting confused with what you're saying..
But all of this works fine
select @@rowcount-- check this one out
select @@rowcount -- check this one out
select @@rowcount -- check this...
August 5, 2010 at 4:07 am
The only errors encounted would be if you didn't have the database and table already created as the script relies on them existing.
There's nothing wrong with SELECT @@ROWCOUNT -- a...
August 5, 2010 at 3:09 am
Actually if you're on a case sensitive server it's:
SELECT * FROM sys.dm_os_performance_counters WHERE object_name LIKE ('%Deprecated%')
I didn't know about this, I don't know alot about the DM features of SQL...
August 5, 2010 at 2:46 am
sakthi_madan,
Run in query analyser:
SELECT @@ROWCOUNT
SELECT @@ROWCOUNT
The first statement returns a row with 0
The second statement is the count of rows returned from the first, i.e 1 row of 0.
Hope...
August 3, 2010 at 2:09 am
Viewing 15 posts - 16 through 30 (of 71 total)