Those are initialisation parameters. You might have them specified in the initSID.ora. If you don't specify them there oracle will assign some default values to them during startup. To check what values have been assigned to them in your instance, run the following:
SELECT name, value FROM v$parameter
WHERE UPPER(name) IN ('TRANSACTIONS', 'TRANSACTIONS_PER_ROLLBACK_SEGMENT');
HTH,




Reply With Quote