Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 3189

Re: ASE 16 : missing token in master.dbo.spt_values

$
0
0

I don't see your 205/Grant record in ASE 15.7 SP136. [I don't have access to a ASE 15.5 server at the moment.]

 

Looking at the source for sp_helprotect (ASE 15.7 SP136, ASE 16.0 SP02 PL03) I see the 'Grant' string is hardcoded in the T-SQL, eg:

 

==================================

... snip ...

                type = case

                                when p.protecttype = 1

                                then "Grant"

                                when p.protecttype = 2

                                then "Revoke"

                                when p.protecttype = 3

                                then "Deny"

                        end,

... snip ...

                        type = "Grant",

... snip ...

                                type = case

                                        when p.protecttype = 1

                                        then "Grant"

                                        when p.protecttype = 2

                                        then "Revoke"

                                    end,

... snip ...

                        type =  "Grant",

... snip ...

==================================

 

Or are you referring to a 'Grant' that shows up in some other system proc?


Viewing all articles
Browse latest Browse all 3189

Trending Articles