April 16, 2012

sp_bcp_dbcmptlevel (Transact-SQL MetaData) Definition

Please note: that the following source code is provided and copyrighted by Microsoft and is for educational purpose only.
The meta data is from an SQL 2012 Server.

I have posted alot more, find the whole list here.

Goto Definition or MetaData

Definition:

sys.sp_bcp_dbcmptlevel(nvarchar @dbname)

MetaData:

   
create procedure sys.sp_bcp_dbcmptlevel
(
@dbname sysname
)
as
select
cmptlevel = sdb.compatibility_level
from
sys.databases sdb
where
name = @dbname

No comments:

Post a Comment

Total Pageviews