Viewing 4 posts - 1 through 4 (of 4 total)
I found this more practical:
select sys.objects.name as 'table',
sys.indexes.name as 'index',
status = case is_disabled
when '1' then 'disabled'
when '0' then 'enabled'
end
from...
November 2, 2018 at 8:28 am
Unfortunately, Session_context() didn't work as I hoped to.
I used it in a procedure, which worked OK.
But when I use the procedure in a view, the behavior is according to...
March 27, 2018 at 3:32 am
The DWH is a datamart, only showing data from the source systems.
My procedure is something like
If < the user has access to this column >
show < real data >
else
...
March 26, 2018 at 8:55 am
Viewing 4 posts - 1 through 4 (of 4 total)