List of stored procedures in Access
-
Hello, Is there any way to get a list of stored procedures in an MS Access database? Been searching for a while and found nothing :( Thanks in advance
-
Create a view in sql server around the following sql statement and select out of the view in access: select name from dbo.sysobjects where xtype = 'P' and status >= 0 and name not like 'dtp%' order by name
-
Excuse my ignorance, but how am I supposed to create a view in sql server working with MS Access? Could you be more explicit please? Thanks
Create a view using query analyzer. Grant select to public. Then access it via a function in vba or directly with a linked ODBC data source. sql: Create View storedproclist as Select name From dbo.sysobjects Where xtype = 'P' and status >= 0 and name not like 'dtp%' Go Grant Select On storedproclist To Public
-
Hello, Is there any way to get a list of stored procedures in an MS Access database? Been searching for a while and found nothing :( Thanks in advance
-
Access doesnt have stored procedures, it has queries and I dont think there is a built-in way of enumerating them.