Replies: 2 comments
-
Yes, this is normal, because the metadata tables use |
Beta Was this translation helpful? Give feedback.
0 replies
-
That said, the comparison itself in the join condition shouldn't require a trim. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I don't know if I'm using it wrong, but I can't execute this query without the TRIM function. Is this normal?
SELECT TRIM(P.RDB$USER) FROM RDB$USER_PRIVILEGES AS P INNER JOIN SEC$USERS AS U ON TRIM(P.RDB$USER) = U.SEC$USER_NAME WHERE P.RDB$PRIVILEGE = 'M' AND P.RDB$USER_TYPE = 8 AND P.RDB$OBJECT_TYPE = 13 AND P.RDB$RELATION_NAME = ?
Beta Was this translation helpful? Give feedback.
All reactions