1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-10 10:50:04 +00:00

chore(docs): updating header for mm_gettables

This commit is contained in:
Allan Bowe
2021-08-02 10:37:01 +03:00
parent 0c67a07e42
commit ce5bfd41dc
2 changed files with 24 additions and 20 deletions

22
all.sas
View File

@@ -11665,18 +11665,20 @@ run;
%mend mm_gettableid;/** %mend mm_gettableid;/**
@file @file
@brief Creates a dataset with all metadata tables for a particular library @brief Creates a dataset with all metadata tables for a particular library
@details Will only show the tables to which a user has the requisite @details Will only show the tables for which the executing user has the
metadata access. requisite metadata access.
usage: usage:
%mm_gettables(uri=A5X8AHW1.B40001S5) %mm_gettables(uri=A5X8AHW1.B40001S5)
@param outds the dataset to create that contains the list of tables @param [in] uri= the uri of the library for which to return tables
@param uri the uri of the library for which to return tables @param [out] outds= (work.mm_gettables) the dataset to contain the list of
@param getauth= YES|NO - fetch the authdomain used in database connections. tables
Set to NO to improve runtimes in larger environments, as there can be a @param [in] getauth= (YES) Fetch the authdomain used in database connections.
performance hit on the `metadata_getattr(domainuri, "Name", AuthDomain)` call. Set to NO to improve runtimes in larger environments, as there can be a
performance hit on the `metadata_getattr(domainuri, "Name", AuthDomain)`
call.
@returns outds dataset containing all groups in a column named "metagroup" @returns outds dataset containing all groups in a column named "metagroup"
(defaults to work.mm_getlibs). The following columns are provided: (defaults to work.mm_getlibs). The following columns are provided:
@@ -11704,8 +11706,8 @@ data &outds;
libdesc $200 libref engine $8 IsDBMSLibname $1 libdesc $200 libref engine $8 IsDBMSLibname $1
tablename $50 /* metadata table names can be longer than $32 */ tablename $50 /* metadata table names can be longer than $32 */
; ;
keep libname libdesc libref engine ServerContext path_schema AuthDomain tableuri keep libname libdesc libref engine ServerContext path_schema AuthDomain
tablename IsPreassigned IsDBMSLibname id; tableuri tablename IsPreassigned IsDBMSLibname id;
call missing (of _all_); call missing (of _all_);
uri=symget('uri'); uri=symget('uri');

View File

@@ -1,18 +1,20 @@
/** /**
@file @file
@brief Creates a dataset with all metadata tables for a particular library @brief Creates a dataset with all metadata tables for a particular library
@details Will only show the tables to which a user has the requisite @details Will only show the tables for which the executing user has the
metadata access. requisite metadata access.
usage: usage:
%mm_gettables(uri=A5X8AHW1.B40001S5) %mm_gettables(uri=A5X8AHW1.B40001S5)
@param outds the dataset to create that contains the list of tables @param [in] uri= the uri of the library for which to return tables
@param uri the uri of the library for which to return tables @param [out] outds= (work.mm_gettables) the dataset to contain the list of
@param getauth= YES|NO - fetch the authdomain used in database connections. tables
Set to NO to improve runtimes in larger environments, as there can be a @param [in] getauth= (YES) Fetch the authdomain used in database connections.
performance hit on the `metadata_getattr(domainuri, "Name", AuthDomain)` call. Set to NO to improve runtimes in larger environments, as there can be a
performance hit on the `metadata_getattr(domainuri, "Name", AuthDomain)`
call.
@returns outds dataset containing all groups in a column named "metagroup" @returns outds dataset containing all groups in a column named "metagroup"
(defaults to work.mm_getlibs). The following columns are provided: (defaults to work.mm_getlibs). The following columns are provided:
@@ -40,8 +42,8 @@ data &outds;
libdesc $200 libref engine $8 IsDBMSLibname $1 libdesc $200 libref engine $8 IsDBMSLibname $1
tablename $50 /* metadata table names can be longer than $32 */ tablename $50 /* metadata table names can be longer than $32 */
; ;
keep libname libdesc libref engine ServerContext path_schema AuthDomain tableuri keep libname libdesc libref engine ServerContext path_schema AuthDomain
tablename IsPreassigned IsDBMSLibname id; tableuri tablename IsPreassigned IsDBMSLibname id;
call missing (of _all_); call missing (of _all_);
uri=symget('uri'); uri=symget('uri');