William Fields
|
|
Group: StrataFrame Users
Posts: 80,
Visits: 239
|
Hello,
I can't remember if the search feature in the DDT ever worked for me, but when I type something into the Find field and click on the search button, nothing happens... and all of the search options are checked.
???
|
|
|
Ivan George Borges
|
|
Group: StrataFrame MVPs
Posts: 1.9K,
Visits: 21K
|
Funny, I had never seen this Search feature.  Anyway, I tried it over here and could reproduce it. It did work on my own Views and Stored Procedures, but wouldn't find anything on the Tables, for example.
|
|
|
Edhy Rijo
|
|
Group: StrataFrame Users
Posts: 2.4K,
Visits: 23K
|
Hi Ivan, I don't think it is designed to look into table fields, at least that is not one of the options in the "Search Options"  Hmmm, I believe I never had the need to search for a field name, all the time for view names, a field in a view, stored procedure, etc. Anyway, very useful feature.
Edhy Rijo
|
|
|
Ivan George Borges
|
|
Group: StrataFrame MVPs
Posts: 1.9K,
Visits: 21K
|
Hey Edhy!
Yep, that could be it.
Abraços.
|
|
|
William Fields
|
|
Group: StrataFrame Users
Posts: 80,
Visits: 239
|
I'm using v7.6.0 of the DDT, and I'm searching on RAISEERROR.
I have a ton of code in our database with the old RAISEERROR syntax which no longer works in SQL 2012, so I was hoping the find feature would be a quick and easy way to see how many lines of code that need to be touched.
But, when I search, nothing happens at all...
What search term can I use to verify if the find feature is working at all?
|
|
|
Edhy Rijo
|
|
Group: StrataFrame Users
Posts: 2.4K,
Visits: 23K
|
Hi William, Make sure you have checked all the options in the "Search Options" as shown in my previous thread.
Edhy Rijo
|
|
|
William Fields
|
|
Group: StrataFrame Users
Posts: 80,
Visits: 239
|
Yes, I confirmed that in my original post.
Thanks.
|
|
|
StrataFrame Team
|
|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Will the search find other things, or is it just RAISEERROR that isn't being found? If you search for a field name or part of a field name does it find anything?
|
|
|
William Fields
|
|
Group: StrataFrame Users
Posts: 80,
Visits: 239
|
Table names - nothing
Field names - nothing
Code within triggers - nothing
Code within stored procs - results
Funny thing, if I clear out the search term after results from stored procs are found and search again, I get the stored proc results again, and user defined functions.
|
|
|
StrataFrame Team
|
|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
I just checked the dbo.Search_Query sproc, and it certainly doesn't check triggers. It only checks sprocs, functions, views, and deploy scripts. That's the bad news. The good news is that you can easily modify the stored procedure to return the extra results if necessary. You won't be able to double-click a trigger from the list and open it for editing, but at least it would return it in the results. You would need to edit the Search_Query sproc and add this before the "RESULT SET #1" comment at the bottom of the procedure: INSERT INTO @results SELECT 5 search_Type, TR.tr_pk search_PrimaryKey, T.tbl_schema search_Schema, T.tbl_name + '.' + TR.tr_Name search_Name, D.[db_name] search_Database FROM dbo.DBETriggers TR INNER JOIN dbo.DBETables T ON TR.tr_tbl_pk = T.tbl_pk INNER JOIN dbo.DBEDatabases D ON T.tbl_db_pk = D.db_pk INNER JOIN dbo.DBEProfile P ON d.db_dbe_pk = P.dbe_pk WHERE P.dbe_pk = @profilePk AND ( ( @includeCodeBody = 1 AND ( TR.tr_ProcedureCode LIKE @queryText OR TR.tr_PreCreate LIKE @queryText ) ) OR ( @includeNamesAndDescriptions = 1 AND ( TR.tr_Name LIKE @queryText OR TR.tr_Description LIKE @queryText |
|
|
William Fields
|
|
Group: StrataFrame Users
Posts: 80,
Visits: 239
|
Thanks for the reply.
Will this be incorporated into the next DDT version?
|
|
|
StrataFrame Team
|
|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Oh yes. The search on the next DDT will be vastly expanded. The search on the current version was more of an afterthought.
|
|
|