vote up 7 vote down star
5

I was looking at the source of sys.sp_dbcmptlevel in SQL Server 2005.

In the source, there is this line I do not understand how it works.

EXEC %%DatabaseEx(Name = @dbname).SetCompatibility(Level = @input_cmptlevel)

It doesn't appear that DatabaseEx is a stored procedure.

-- does not return any result
select	*
from	sys.procedures
where	[name] like '%DatabaseEx%'

So my questions are

  • What is DatabaseEx and what does it do?
  • What is %% before DatabaseEx?
flag

Google can be useless for searching stuff like "%%"... arg. Maybe I need more practice on googling... – Sung Meister Apr 29 at 13:31
I still cannot find any documentation on this... – Sung Meister Apr 29 at 18:18
3  
Google Code search allows symbols like %%, but it seems to have a much more limited search area. This appears to be completely undocumented on MSDN. I get the impression that the TSQL used in System Stored Procedures is not parsed exactly the same as TSQL elsewhere. – Steven Richards Apr 30 at 2:08

3 Answers

vote up 1 vote down
-- Note: database @dbname may not exist anymore
-- Change compatibility level
-- If invoke gets error, exception will abort this proc.
EXEC %%DatabaseEx(Name = @dbname).SetCompatibility(Level = @input_cmptlevel)

it looks like a way to refer to a variable database as an object and make config changes

link|flag
vote up 1 vote down

Interesting find.

System SP's also refer to %%Object, %%Relation, %%ColumnEx, %%LinkedServer, %%Owner, %%CurrentDatabase(), %%ErrorMessage, %%Module, %%DatabaseRef, %%LocalLogin, %%Alias, %%ServerConfiguration, %%IndexOrStats, %%ScalarType (etc)

My interpretation is that the %%() retrieves some kind of (COM?) object based on filter criteria, followed by a method call.

link|flag
I was thinking that it was accessing an extended sproc but I am even sure about that at this point. – Sung Meister Apr 29 at 22:31
vote up 6 vote down

I think the best answer here is that it's not documented, and not supported, so don't rely on it. While it's interesting to know how SQL Server works internally, anything you do with that knowledge has the potential to break in a future hotfix, service pack or release.

link|flag
You're right about that, Mike. I just wanted to know what it does but wasn't going to use it in a production script. – Sung Meister Apr 30 at 11:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.