Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

table names

How to load all table names from access database in qlikview??

5 Replies
Not applicable
Author

Hai,

What do u Mean By Load ing from Acces

Through Connection String U can Access All tables and While Storing Pls Name by u r self

Regards,

Chandu

Not applicable
Author

I mean to say how to get all the table names from access database through script in qlikview...

Anonymous
Not applicable
Author

Try this:

SELECT * FROM MSysObjects WHERE Type=1 AND Flags=0

In access the system tables are hidden from the user as standard. But it's possible to change the setting.

/Henrik

jagan
Partner - Champion III
Partner - Champion III

HI,

Try this query, this query returns only non system tables.

SELECT MSysObjects.Name, MSysObjects.Type

FROM MSysObjects

WHERE MSysObjects.Name Not Like "MsyS*" AND MSysObjects.Type=1

ORDER BY MSysObjects.Name;

Regards,

Jagan.

jeffmartins
Partner - Creator II
Partner - Creator II

Hi shreeaaradhya ,

You can use sqltables statement to get all the field names of an ODBC data sorce.

Example:

connect to 'MS Access 7.0 Database; DBQ=C:\Course3\DataSrc\QWT.mbd';

sqltables;

Regards