Created 07-16-2016 11:59 AM
Got below error while running the query as given in tutorial. query: CREATE VIEW IF NOT EXISTS tweets_clean AS SELECT t.tweet_id, t.ts, t.msg, m.country FROM tweets_simple t LEFT OUTER JOIN time_zone_map m ON t.time_zone = m.time_zone; Error: Error while compiling statement: FAILED: SemanticException [Error 10001]: Line 7:6 Table not found 'tweets_simple' [ERROR_STATUS]
Created 07-17-2016 06:56 AM
I was making a view [tweets_clean] using another view [tweets_simple] as given in the sample tutorial. Initially error was "Table not found 'tweets_simple' " but after restart it has gone now.
Created 07-16-2016 04:18 PM
Take a look whether you're in proper database, I.e.
use default;
select statement
Created 07-17-2016 06:56 AM
I was making a view [tweets_clean] using another view [tweets_simple] as given in the sample tutorial. Initially error was "Table not found 'tweets_simple' " but after restart it has gone now.