Skip to main content

Searching SQL Stored Procedure Source Code in Information_Schema.Routines

— Here’s a little line of code I use a lot to find out what SQL stored  procedures / functions use a particular table SELECT * FROM   information_schema.routines WHERE  routine_definition LIKE ‘%GetThemeColours%’ –&nnbsp;INFORMATION_SCHEMA.ROUTINES is similar to sys.routines but  has all the text names instead of objectid’s  with the added bonus the full  stored procedure text is searchable (its in ROUTINE_DEFINITION column) – its like  a super powered sp_helptext — Also check out these helpful views: — View all the columns in tables + views with full table/view name SELECT * FROM   information_schema.columns — stored procedure / function parameters SELECT * FROM   information_schema.parameters — output columns for table valued functions (NOT stored procedures) SELECT * FROM   information_schema.routine_columns — list of tables SELECT * FROM   information_schema.tables — list of views SELECT * FROM   information_schema.tables    — 195cac785d844883be7a61f2b54189c6

Adobe Business Catalyst Adds FTP Access to Customise Layouts

Adobe Business Catalyst Adds FTP Access to Customise Layouts

Following on from [story:business-catalyst-ftp-templates]  – Business Catalyst now has access to all the custom layouts available via FTP. You can access the layouts in the /Layouts folder via FTP. You can now customise the layout via FTP for these modules: Affiliate Announcement Blog Booking Comments Customer Cases Customer Orders Faq Favourite Forum Literature Online Shop Outbound […]