Click here to Skip to main content
15,892,768 members
Home / Discussions / Database
   

Database

 
GeneralRe: mySQL query question Pin
Luc Pattyn29-Apr-10 0:49
sitebuilderLuc Pattyn29-Apr-10 0:49 
GeneralRe: mySQL query question Pin
Md. Marufuzzaman29-Apr-10 0:58
professionalMd. Marufuzzaman29-Apr-10 0:58 
AnswerRe: mySQL query question Pin
Md. Marufuzzaman28-Apr-10 22:27
professionalMd. Marufuzzaman28-Apr-10 22:27 
GeneralRe: mySQL query question Pin
Mycroft Holmes28-Apr-10 23:35
professionalMycroft Holmes28-Apr-10 23:35 
AnswerRe: mySQL query question Pin
Chris Meech29-Apr-10 2:37
Chris Meech29-Apr-10 2:37 
QuestionHow to get the list of all dependent procedures? Pin
A M SOMAN28-Apr-10 1:48
A M SOMAN28-Apr-10 1:48 
AnswerRe: How to get the list of all dependent procedures? Pin
Henry Minute28-Apr-10 2:43
Henry Minute28-Apr-10 2:43 
AnswerRe: How to get the list of all dependent procedures? Pin
Md. Marufuzzaman28-Apr-10 22:19
professionalMd. Marufuzzaman28-Apr-10 22:19 
Hi Try the following:
Link 1 : sql-server-get-the-list-of-object-dependencies-sp_depends-and-information_schema-routines-and-sys-dm_sql_referencing_entities/[^]

Or

DECLARE @StringToSearch NVARCHAR(MAX)
SET @StringToSearch = 'ENTER_SP_TO_SEARCH'

SELECT    
    [name],   
    (   
        SELECT    
            OBJECT_DEFINITION(obj2.object_id) AS [text()]   
        from sys.all_objects obj2   
        where obj2.object_id = obj1.object_id   
        FOR XML PATH(''), TYPE   
    ) AS Obj_text,   
    [type] as ObjType    
FROM sys.all_objects obj1  
WHERE OBJECT_DEFINITION(object_id([name])) LIKE '%' + @StringToSearch + '%' 

Thanks
Md. Marufuzzaman


I will not say I have failed 1000 times; I will say that I have discovered 1000 ways that can cause failure – Thomas Edison.

Questioni need a help with this problem in sql server 2005 ,, please,, please Pin
necib201028-Apr-10 0:47
necib201028-Apr-10 0:47 
AnswerRe: i need a help with this problem in sql server 2005 ,, please,, please Pin
Mycroft Holmes28-Apr-10 3:24
professionalMycroft Holmes28-Apr-10 3:24 
QuestionSelecting random top 3 listings per shop for a range of active advertising shops Pin
Graeme_Grant27-Apr-10 21:24
mvaGraeme_Grant27-Apr-10 21:24 
AnswerRe: Selecting random top 3 listings per shop for a range of active advertising shops Pin
Graeme_Grant27-Apr-10 22:13
mvaGraeme_Grant27-Apr-10 22:13 
GeneralRe: Selecting random top 3 listings per shop for a range of active advertising shops Pin
Mycroft Holmes28-Apr-10 3:21
professionalMycroft Holmes28-Apr-10 3:21 
QuestionHow Entertaining! [modified] Pin
Roger Wright27-Apr-10 17:35
professionalRoger Wright27-Apr-10 17:35 
AnswerRe: How Entertaining! Pin
_Damian S_27-Apr-10 17:41
professional_Damian S_27-Apr-10 17:41 
AnswerRe: How Entertaining! Pin
riced28-Apr-10 1:38
riced28-Apr-10 1:38 
GeneralRe: How Entertaining! Pin
Roger Wright28-Apr-10 9:08
professionalRoger Wright28-Apr-10 9:08 
GeneralRe: How Entertaining! Pin
riced28-Apr-10 9:33
riced28-Apr-10 9:33 
AnswerRe: How Entertaining! Pin
PIEBALDconsult28-Apr-10 3:52
mvePIEBALDconsult28-Apr-10 3:52 
GeneralRe: How Entertaining! Pin
Roger Wright28-Apr-10 9:10
professionalRoger Wright28-Apr-10 9:10 
GeneralRe: How Entertaining! Pin
PIEBALDconsult28-Apr-10 9:58
mvePIEBALDconsult28-Apr-10 9:58 
GeneralRe: How Entertaining! Pin
Roger Wright29-Apr-10 17:57
professionalRoger Wright29-Apr-10 17:57 
GeneralRe: How Entertaining! Pin
Richard MacCutchan28-Apr-10 9:35
mveRichard MacCutchan28-Apr-10 9:35 
GeneralRe: How Entertaining! Pin
PIEBALDconsult28-Apr-10 9:56
mvePIEBALDconsult28-Apr-10 9:56 
AnswerIt's all in the connection string Pin
The Man from U.N.C.L.E.28-Apr-10 21:47
The Man from U.N.C.L.E.28-Apr-10 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.