I’m looking to integrate an Azure Database to IIQ 8.3
I have a relativily simple requierement to provision users.
My question would be how to best proceed to provision different tables inside the db ?
I’ve one table for the user, and one different table for his right, this middle table both referencing user and the right.
I want to avoid any unnecessary customisation, so I’d rather ask while I am at it, what would be the best way to deal with it.
I don’t believe you need to handle that explicitly. As long as you create the account with the correct values and assign the required group, the entries should be automatically added to the tables.
in Azure exist different type ofr managing db, but more or less, is the same of a normal MSSQL istance on-primise. The most work is on Azure, about permission, network, firewall ecc…
I would suggest using the JDBC connector and configure the operations like a normal DB once the network connectivity has been allowed through any firewall or express route.
What type of Azure database is it? The JDBC connector allows you to specify a connection string specific to the type/driver (you will need to make sure this is put in the lib folder) for the DB and then you use SQL syntax in the operations appropriate to this.
If you want to manage accounts and entitlements in the Azure SQL DB this is fine.
But you want to update DB tables and this is a different type of connector for this it would be the JDBC connector. Which allows you to use SQL statements for different operations on specific tables.