I'm a normal "would be DBA" level developer. I've been handling some databases with a few million records. A lot goes around importing data between database and its clone and then using that clone in the web-app environment.
Well, I've known that keeping PK indexes automatically and so it helps speedup the data access. Now, from this discussion I derive that if I'm using JOINs in my SQL-Queries then I shud use FK and index it to make the JOIN operations efficient.
For example, I have a table OrgMaster (contains all the Org records) then I have a BookingMaster table (contains all the Booking records). Now, the OrgMaster.Id is being 'referenced' as BookingMaster.OrgId. So, I have an FK for the OrgId-to-Id relationship and I shud 'index' it for better performance of any JOIN operation between both of these tables .. did I get it correctly?
All the above - at the cost of extra overhead of space and time (while inserting record in the table with FK).
I'd request that you provide me a list of points to be considered, like:
- Is FK-index going to eat up too much space\time as table grows few million records?
- In that case, is it worth to go for an FK-index "each time"?
In what case shud I NOT apply FK or Index it or do neither of it (of course I can handle a LOT from the app)
Any other tricky to speedup JOIN or other such time-consuming lookups?
Thank you.
