Forum Discussion
Lakehouse data discrepancy between notebook and SQL endpoint or Dataflow
Yes, the table is indeed a shortcut table. I have verified that the source table contains the expected data.
I have also created a notebook from the source and the same result
Just to confirm: notebook doesn't find the data also in the source table?
However other user interfaces finds the data also in the source table.
So the issue seems to be at the source table and notebook is not able to find the data, but other user interfaces are able to see the data.
- Anonymous2 years agoNot applicable
That’s correct, the Notebook doesn’t show the data either. However, when using the SQL endpoint or Dataflow, the data is displayed correctly.
- frithjof_v2 years agoCommunity Champion
Could you try to use a command like this in the Notebook:
%%sql
SELECT * FROM tableName VERSION AS OF 1
(You can also replace 1 with another number. You can use DESCRIBE HISTORY to find out which versions have been made of the table, and then try to query some of the most recent versions).