Created
December 9, 2022 02:47
-
-
Save jgoodie/f4181f399630d3098d4134ec72e5b7d4 to your computer and use it in GitHub Desktop.
basic user related notes for teradata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MODIFY user dbc as PASSWORD = new_password; | |
CREATE USER SYSDBA FROM DBC AS PERM=23592E8, SPOOL=11800E8, TEMPORARY=0, PASSWORD=secret; | |
GRANT SELECT,EXECUTE ON DBC TO SYSDBA WITH GRANT OPTION; | |
GRANT ALL ON SYSDBA TO SYSDBA WITH GRANT OPTION; | |
GRANT SELECT ON SYS_CALENDAR TO SYSDBA WITH GRANT OPTION; | |
GRANT SELECT ON DBC TO PUBLIC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment