docs.Schema_EntityList - V
type: V ( view ), modify_date: 2022-09-08 16:36:21
RepoObject_guid: 0960D8EE-E90A-EC11-8516-A81E8446D5B0
Columns
PK | Column Name | Data Type | NULL? | ID |
---|---|---|---|---|
1 |
|
|
||
2 |
|
|
||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
Indexes
PK_Schema_EntityList
-
IndexSemanticGroup: no_group
-
[column-RepoObject_schema_name]; nvarchar(128)
-
[column-cultures_name]; nvarchar(10)
-
-
PK, Unique, Real: 1, 1, 0
idx_Schema_EntityList__2
-
IndexSemanticGroup: no_group
-
[column-RepoObject_schema_name]; nvarchar(128)
-
-
PK, Unique, Real: 0, 0, 0
idx_Schema_EntityList__3
-
IndexSemanticGroup: no_group
-
[column-cultures_name]; nvarchar(10)
-
-
PK, Unique, Real: 0, 0, 0
Column Details
sql_modules_definition
docs.Schema_EntityList - V script
CREATE View docs.Schema_EntityList
As
Select
roe.RepoObject_schema_name
, roe.cultures_name
, EntityList_Puml = String_Agg ( Cast(roe.RepoObject_Puml As NVarchar(Max)), Char ( 13 ) + Char ( 10 )) Within Group(Order By
roe.RepoObject_fullname2)
, EntityList_PumlOnlyIndex = String_Agg (
Cast(roe.RepoObject_PumlOnlyIndex As NVarchar(Max))
, Char ( 13 ) + Char ( 10 )
) Within Group(Order By
roe.RepoObject_fullname2)
, EntityList_PumlOnlyPK = String_Agg ( Cast(roe.RepoObject_PumlOnlyPK As NVarchar(Max)), Char ( 13 ) + Char ( 10 )) Within Group(Order By
roe.RepoObject_fullname2)
, EntityList_PumlOnlyPkOrIndex = String_Agg (
Cast(roe.RepoObject_PumlOnlyPkOrIndex As NVarchar(Max))
, Char ( 13 ) + Char ( 10 )
) Within Group(Order By
roe.RepoObject_fullname2)
, EntityList_PumlOnlyPkOrIndexOrMeasure = String_Agg (
Cast(roe.RepoObject_PumlOnlyPkOrIndexOrMeasure As NVarchar(Max))
, Char ( 13 ) + Char ( 10 )
) Within Group(Order By
roe.RepoObject_fullname2)
, EntityList_PumlOnlyPkOrNotHidden = String_Agg (
Cast(roe.RepoObject_PumlOnlyPkOrNotHidden As NVarchar(Max))
, Char ( 13 ) + Char ( 10 )
) Within Group(Order By
roe.RepoObject_fullname2)
From
docs.RepoObject_Plantuml_Entity_T As roe
Group By
roe.RepoObject_schema_name
, roe.cultures_name
sql