Eine Einführung in
|
| SQLite | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to SQLite | ||
| none | ||
| DB2 | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to DB2 | ||
| none | ||
| MS Access | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to MS Access | ||
| none | ||
| PostgreSQL | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to PostgreSQL | ||
| none | ||
| Oracle | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to Oracle | ||
|
To get a list of all tables: SELECT * FROM cat ORDER BY TABLE_NAME | ||
| MS SQL Server | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to MS SQL Server | ||
To get the names of all tables:
SELECT name FROM sysobjects WHERE type='U' ORDER BY name | ||
| MySQL | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to MySQL | ||
In MySQL on LINUX the table names are case sensitive. This means that the table bbc exists but Bbc gives an error. This is a deviation from the SQL standard. | ||
| Sybase | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to Sybase | ||
| none | ||
| Mimer SQL | ||
ProblemAn attempt was made to read from a table that does not exist. Most likely the table name has been spelt incorrectly. Possibly the table is not in the current schema or database. Solutions
| ||
| Specific to Mimer SQL | ||
| none | ||