Download presentation
Presentation is loading. Please wait.
Published byJacqueline Barrowman Modified over 9 years ago
2
CREATE LOGIN James WITH PASSWORD = 'A' Answer: SQL 2005 and 2008 can enforce the password policy of the operating system. CREATE LOGIN James WITH PASSWORD = 'ABC$$123' Bug Catcher 1
3
GRANT LOGIN James WITH PASSWORD = 'ABC$$123' Answer: You need to CREATE or ALTER a login while setting a password. CREATE LOGIN James WITH PASSWORD = 'ABC$$123' Bug Catcher 2
4
--You created the James login and are using the correct password. Why can’t you log in? Answer: Change Server Authentication mode to SQL and Windows. Bug Catcher 3
5
DROP LOGIN James WITH PASSWORD = 'ABC$$123' Answer: To drop a login you don’t need to specify the password. DROP LOGIN James Bug Catcher 4
6
GRANT James CONTROL SERVER Answer: Specify the permission after the Grant DCL keyword. GRANT CONTROL SERVER TO James Bug Catcher 5
7
FORBID ALTER ANY DATABASE TO James Answer: There is no FORBID keyword. DENY ALTER ANY DATABASE TO James Bug Catcher 6
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.