Thursday, December 24, 2020

If you must use a user name and password to connect to a database, where should you store the sensitive information?

 Options

- Compiled in the application
- In an encrypted application configuration file
- In a resource file deployed with the application
- In the registry


CORRECT ANSWER : In an encrypted application configuration file

No comments:

Post a Comment

Get max value for identity column without a table scan

  You can use   IDENT_CURRENT   to look up the last identity value to be inserted, e.g. IDENT_CURRENT( 'MyTable' ) However, be caut...