Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";
But its showing me error
What is the error you are getting?
May be try seleting few fields to see if it works
SQL SELECT
F1,
F2
FROM FSCDB.MO_PURCH_SOUNDING_CORRECTION_VIEW
;
do I need to set any variables?
Database not found error
There is no open data connection.
SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW"
try like this
TableName:
LOAD *;
SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";
So.... have you actually created an ODBC or OLEDB connection to the server / DB?
Andy
ODBC CONNECT TO YOURODBC ;
SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW"
yes and I am logging into the specific database with userid and passwort as well
So... did you the "Select" button to create your query?
AFAIK you still haven't confirmed what the error is! What is it?
Andy