Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sql queries fro Access !

Status
Not open for further replies.

daniorza

Programmer
Oct 1, 2001
2
RO
I want to find out the sql strings for creating an query (view ) in Access database and for selecting views ( queries ) from a Access database in Sybaseasa is like this :
Code:
" select viewtext from sysviews where viewname = 'name_of_view' "
 
To select 'views' from an SQL db, the sytax would be:

SELECT NAME FROM SYSOBJECTS WHERE XTYPE = 'V'

Ashley L Rickards
SQL DBA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top