This kind of query would work perfectly in SQL Server, but it does not work in Oracle.
select issueno, * from SOMETABLE;
The error message
On Oracle you have to include the table name or an alias to use the *. Try this:
select issueno, SOMETABLE.* from SOMETABLE;