If I simply use
SELECT * FROM WBS_TRANSACTIONS
the resultset opens but as there are several thousand records it takes sometime. So as all I want to do is add a new record I tried the following
SELECT TOP 10 * FROM WBS_TRANSACTIONS ORDER BY CONTRACT_NO DESC
This produces an Error 40002 "S0022. Column not Found". If a column is missing surely the overall select would fail as well. The error occurs as well for TOP 1 and TOP 3.
Help would be appreciated as I want to eliminate the delay in loading.
SELECT * FROM WBS_TRANSACTIONS
the resultset opens but as there are several thousand records it takes sometime. So as all I want to do is add a new record I tried the following
SELECT TOP 10 * FROM WBS_TRANSACTIONS ORDER BY CONTRACT_NO DESC
This produces an Error 40002 "S0022. Column not Found". If a column is missing surely the overall select would fail as well. The error occurs as well for TOP 1 and TOP 3.
Help would be appreciated as I want to eliminate the delay in loading.