Please suggest some of the best ways to maintain referential integrity without FK's in already existing database. Planning to remove the FK's from some of the tables. How can we maintain the referential integrity.
It is good practice to have foreign key as part of your database design. Always leveraging something out of the box with RDBMS, is better, instead of trying to reinvent the wheel.
Foreign keys, in addition to maintaining database referential integrity, also provide performance benefits in the execution of queries. Read FK and performance benefits
If you don't want to have Foreign keys and want to ensure referential integrity, you can think of below options: