I created a new table in the Bluemix SQL Database service by uploading a csv (baseball.csv) and took the default table name of "baseball".
I created a simple app in Node.js which is just trying to select data from the table with select * from baseball, but I keep getting the following error:
[IBM][CLI Driver][DB2/NT] SQL0204N "USERxxxx.BASEBALL" in an undefined name
Why can't it find my database table?
"baseball"is not the same asbaseballwhen we're talking table names. Try the uppercaseBASEBALLwhen creating the table. Alternatively, tryselect * from "baseball".