Showing posts with label Database (Sailpoint). Show all posts
Showing posts with label Database (Sailpoint). Show all posts

Friday, May 3, 2024

Database Connection

 public static Connection getConnection(){

    String url = "DBURL";

    String user = "spadmin";

String pwd = "p1213#%$#^$%#&^";    

Connection connection;

 log.error("Intializing connection");

 Properties connectionProperties = new Properties();

         connectionProperties.put("user", user);

        connectionProperties.put("password", context.decrypt(pwd));

        connection = DriverManager.getConnection(url, connectionProperties);        

        return connection;

}


Saturday, July 25, 2020

Tables

List of tables in Sailpoint :

Table Name                            Description

spt_identity        -        Stored the all identities in Sailpoint

spt_link              -        Stored all the links (accounts) in Sailpoint.

IAM, IGA & Identity Security

IAM sets up the employee's account so they can log in and access the application with their credentials. IGA makes sure that access requ...

Featured Articles