I changed MySQLd running on Linux to be case-insensitive (lower_case_table_names=1). Then, queries were failing because MySQL looks for every table with a lowercase name. Easily solved, I thought. I renamed the database directories and table files with lower case names.
Now I get something like this for every table:
select * from dim_customer Error Code: 1146. Table 'reportingdatawarehouse.dim_customer' doesn't exist
My guess is that the ib_data or ib_logfile0 files have the old names referenced in them maybe? How do I fix this?
Thanks,
-Scott
Now I get something like this for every table:
select * from dim_customer Error Code: 1146. Table 'reportingdatawarehouse.dim_customer' doesn't exist
My guess is that the ib_data or ib_logfile0 files have the old names referenced in them maybe? How do I fix this?
Thanks,
-Scott