Eine Einführung in
|
| 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 | ||