SQL Server How to find if any stored procedure is referencing database object Get link Facebook X Pinterest Email Other Apps madeinstein , February 01, 2011 select StoredProcedureName = p.name from sys.sql_modules sm inner join sys.procedures p on sm.[object_id] = p.[object_id] where [definition] like '%Database_Object_Name%' Comments Tales of a Starbucks Addict3 February 2011 at 17:24If you are using the SQL Server Management studio you can also right click on the table and view dependencies.Great blog by the wayReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
Multiple TeamCity Build Agents on one Server madeinstein , February 16, 2018 multiple-teamcity-build-agents-on-one-server Read more
Tibco Rendezvous (tibrv) C# .Net example madeinstein , May 10, 2012 This is an example of broadcast messaging using TIBCO Rendezvous . You can find more information about queue, dispatcher, transport and other rendezvous concepts in the TIBCO Rendezvous® Concepts pdf documentation. Command Line: Receiving messages tibrvlisten –service <port> -network "<ip-address>" –daemon <port> "<subject>" tibrvlisten –service <port> -network ";<multicast-ip-address>" –daemon <port> "<subject>" tibrvlisten -service 7500 -network "192.168.xx.xxx" -daemon 7500 "ME.TEST" tibrvlisten -service 7500 -network "192.168.xx.xxx" -daemon 7500 "ME.>" Publishing messages tibrvsend –service <port> -network "<ip-address>" –daemon <port> "<subject>" "<your-message>" tibrvsend -service 7500 -network "192.168.xx.xxx" -daemon 7500 "ME.TEST" "He Read more
Parse XML to dynamic object in C# madeinstein , July 24, 2012 <? xml version="1.0" encoding="utf-8" ?> < contacts > < contact id = '1' > < firstName > Michael </ firstName > < lastName > Jordan </ lastName > < age > 40 </ age > < dob > 1965 </ dob > < salary > 100.35 </ salary > </ contact > < contact id = '2' > < firstName > Scottie </ firstName > < lastName > Pippen </ lastName > < age > 38 </ age > < dob > 1967 </ dob > < salary > 55.28 </ salary > </ contact > </ contacts > public class XmlToDynamic { public static void Parse(dynamic parent, XElement node) { if (node.HasElements) { if (node.Elements(node.Elements().First().Name.LocalName).Count() > 1) { //list var item = new ExpandoObject(); var list = new List<dynamic Read more
If you are using the SQL Server Management studio you can also right click on the table and view dependencies.
ReplyDeleteGreat blog by the way