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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to retrieve items from MSysIMEXSpecs? 1

Status
Not open for further replies.

barny2006

MIS
Mar 30, 2006
521
US
remou,
i mean, as pete said, if i want to retrieve and save import specs in a file or something, how could i iterate through the msysimexspecs? can i do a select from msysimexspecs? and if i do, what fields/columns are in that object? can you give an example?
like this one?
SELECT MSysObjects.Name FROM MsysObjects " & _
"ORDER BY MSysObjects.Name;"
this will list all the objects' names, tables, queries, reports, modules, forms, etc. one of which is msysimexspecs. then i use this code to list the name of the object:
obj_name = objRecordset.Fields.Item("name")
which lists the name of objects.
in case of msysimexspecs, what field items are available?
 
Go to Tools->Options and tick System Objects on the view tab. You will find two tables that relate to specifications, MSysIMEXSpecs and MSysIMEXColumns. You can examine the table structure. Meddling with system tables can seriously damage the health of your database.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top