Hi Shivap,
How are you doing today?, As per my understanding, in Unity Catalog, if you want to create an external table, you just need to make sure the external location is registered and approved first. Even though you're specifying a path with LOCATION, Unity Catalog treats it as a managed table unless you're pointing to a pre-registered external path. So, first register your external location using CREATE EXTERNAL LOCATION, then grant access to it, and finally create your table using CREATE TABLE ... LOCATION 'your-path'. Unity Catalog will treat it as an external table if the path is outside the managed schema location. You don't need to add the word EXTERNAL—just providing a valid custom location is enough. Let me know if you’d like help setting up the external location step-by-step!
Regards,
Brahma