- 1216 Views
- 0 replies
- 6 kudos
In the docs it's mention that "if you use Azure Database for MySQL as an external metastore, you must change the value of the lower_case_table_names property from 1 (the default) to 2 in the server-side database configuration."However "lower_case_tab...
- 1216 Views
- 0 replies
- 6 kudos
- 1775 Views
- 2 replies
- 3 kudos
Table has the following Columns:First_Name, Last_Name, Department_Id,Contact_No, Hire_DateDisplay the emplopyee First_name, Count of Characters in the firstname,password.Password should be first 4 letters of first name in lower case and the date and ...
- 1775 Views
- 2 replies
- 3 kudos
Latest Reply
@SANJEEV BANDRU​ , SELECT
CONCAT(substring(First_Name, 0, 2) , substring(Hire_Date, 0, 2), substring(Hire_Date, 3, 2)) as password
FROM
table;If Hire_date is timestamp you may need to add date_format()
1 More Replies
by
wyzer
• Contributor II
- 8278 Views
- 2 replies
- 2 kudos
Hello,When I run this code :CREATE DATABASE BackOfficeI see the database like this :backofficeWhy everything is in lower case ?Is it possible to configure Databricks in order to keep the real name ?Thanks.
- 8278 Views
- 2 replies
- 2 kudos
Latest Reply
It is managed by hive metastore as you can put it in different databases is saver this way as some database are Case Sensitive and some not (you can easily test it with standard WHERE syntax).Probably you could change it with some hive settings but i...
1 More Replies