@Kris Koiralaโ :
When you create a streaming live table in Databricks Delta Lake using the code CREATE STREAMING LIVE TABLE Employee, the table is created in the default database called default. If no storage location is specified, the table is stored in the default Delta Lake file system associated with your Databricks workspace. To create the table in a specific database (schema) such as dim, you can use the following syntax:
CREATE STREAMING LIVE TABLE dim.Employee
This statement creates the Employee table within the dim database. The table will be available in the Data tab of your Databricks workspace under the specified database. You can then use this table for reporting or any other purposes within your Databricks environment.