Click here to Skip to main content
15,886,693 members

Comments by BBG112 (Top 2 by date)

BBG112 28-May-14 1:37am View    
I need to differ dll access through different namespace. I need this because while i share dll with multiple application. Resources were locked inside the dll.
BBG112 20-Nov-13 7:04am View    
Deleted
Already there was a code but it was not efficient..
;WITH stored_procedures AS (
SELECT
o.name AS proc_name, oo.name AS table_name,
ROW_NUMBER() OVER(partition by o.name,oo.name ORDER BY o.name,oo.name) AS row
FROM sysdepends d
INNER JOIN sysobjects o ON o.id=d.id
INNER JOIN sysobjects oo ON oo.id=d.depid
WHERE o.xtype = 'IF' OR o.xtype = 'P' OR o.xtype='V')
SELECT proc_name, table_name FROM stored_procedures
WHERE row = 1 AND proc_name ='fnMS_BY_AuditByAuditID2'
ORDER BY proc_name,table_name