/ Published in: SQL
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--List Tables SELECT * FROM IATA30R..sysobjects WHERE xtype = 'U' --List Stored Procedure SELECT * FROM IATA30R..sysobjects WHERE xtype = 'P' AND [name] LIKE 'sp%' --List Functions SELECT * FROM IATA30R..sysobjects WHERE xtype = 'FN'