﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Database Deployment Toolkit » Issues  » Search Panel Not Functional</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 07 Apr 2026 07:26:07 GMT</lastBuildDate><ttl>20</ttl><item><title>Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32240.aspx</link><description>Hello,&lt;br/&gt;&lt;br/&gt;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.&lt;br/&gt;&lt;br/&gt;???</description><pubDate>Fri, 25 Oct 2013 13:28:22 GMT</pubDate><dc:creator>William Fields</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32252.aspx</link><description>Oh yes. &amp;nbsp;The search on the next DDT will be vastly expanded. &amp;nbsp;The search on the current version was more of an afterthought. &amp;nbsp;</description><pubDate>Fri, 25 Oct 2013 13:28:22 GMT</pubDate><dc:creator>StrataFrame Team</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32251.aspx</link><description>Thanks for the reply.&lt;br/&gt;&lt;br/&gt;Will this be incorporated into the next DDT version?</description><pubDate>Fri, 25 Oct 2013 11:40:59 GMT</pubDate><dc:creator>William Fields</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32250.aspx</link><description>I just checked the dbo.Search_Query sproc, and it certainly doesn't check triggers. &amp;nbsp;It only checks sprocs, functions, views, and deploy scripts. &amp;nbsp;That's the bad news. &amp;nbsp;The good news is that you can easily modify the stored procedure to return the extra results if necessary. &amp;nbsp;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. &amp;nbsp;You would need to edit the Search_Query sproc and add this before the "RESULT SET #1" comment at the bottom of the procedure:&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt;	&lt;/span&gt;INSERT INTO&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;@results&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;SELECT&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;5 search_Type,&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;TR.tr_pk search_PrimaryKey,&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;T.tbl_schema search_Schema,&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;T.tbl_name + '.' + TR.tr_Name search_Name,&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;D.[db_name] search_Database&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;FROM&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;dbo.DBETriggers TR&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;INNER JOIN dbo.DBETables T ON TR.tr_tbl_pk = T.tbl_pk&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;INNER JOIN dbo.DBEDatabases D ON T.tbl_db_pk = D.db_pk&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;INNER JOIN dbo.DBEProfile P ON d.db_dbe_pk = P.dbe_pk&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;WHERE&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;P.dbe_pk = @profilePk&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;AND&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;(&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;			&lt;/span&gt;(&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;@includeCodeBody = 1&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;AND&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;(&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;					&lt;/span&gt;TR.tr_ProcedureCode LIKE @queryText&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;					&lt;/span&gt;OR&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;					&lt;/span&gt;TR.tr_PreCreate LIKE @queryText&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;)&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;			&lt;/span&gt;)&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;			&lt;/span&gt;OR&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt; &amp;nbsp;(&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;@includeNamesAndDescriptions = 1&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;AND&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;(&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;					&lt;/span&gt;TR.tr_Name LIKE @queryText&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;					&lt;/span&gt;OR&amp;nbsp;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;					&lt;/span&gt;TR.tr_Description LIKE @queryText&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;				&lt;/span&gt;)&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;			&lt;/span&gt;)&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;		&lt;/span&gt;);</description><pubDate>Fri, 25 Oct 2013 11:29:02 GMT</pubDate><dc:creator>StrataFrame Team</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32249.aspx</link><description>Table names - nothing&lt;br/&gt;&lt;br/&gt;Field names - nothing&lt;br/&gt;&lt;br/&gt;Code within triggers - nothing&lt;br/&gt;&lt;br/&gt;Code within stored procs - results&lt;br/&gt;&lt;br/&gt;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&amp;nbsp;user defined functions.</description><pubDate>Fri, 25 Oct 2013 11:14:09 GMT</pubDate><dc:creator>William Fields</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32248.aspx</link><description>Will the search find other things, or is it just RAISEERROR that isn't being found? &amp;nbsp;If you search for a field name or part of a field name does it find anything?</description><pubDate>Fri, 25 Oct 2013 08:14:47 GMT</pubDate><dc:creator>StrataFrame Team</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32247.aspx</link><description>Yes, I confirmed that in my original post.&lt;br/&gt;&lt;br/&gt;Thanks.</description><pubDate>Thu, 24 Oct 2013 12:25:39 GMT</pubDate><dc:creator>William Fields</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32246.aspx</link><description>Hi William,&lt;br/&gt;&lt;br/&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlTopic_ctlPanelBar_ctlTopicsRepeater_ctl03_lblFullMessage"&gt;Make sure you have checked all the options in the "Search Options"&lt;/span&gt; as shown in my previous thread.</description><pubDate>Thu, 24 Oct 2013 10:27:22 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32245.aspx</link><description>I'm using v7.6.0 of the DDT, and I'm searching on RAISEERROR.&lt;br/&gt;&lt;br/&gt;I have a ton of code in our database&amp;nbsp;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.&lt;br/&gt;&lt;br/&gt;But, when I search, nothing happens at all...&lt;br/&gt;&lt;br/&gt;What search term can I use to verify if the find feature is working at all?</description><pubDate>Thu, 24 Oct 2013 09:44:15 GMT</pubDate><dc:creator>William Fields</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32244.aspx</link><description>Hey Edhy!&lt;br/&gt;&lt;br/&gt;Yep, that could be it.&lt;br/&gt;&lt;br/&gt;Abraços.</description><pubDate>Thu, 24 Oct 2013 07:47:17 GMT</pubDate><dc:creator>Ivan George Borges</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32243.aspx</link><description>Hi Ivan,&lt;br/&gt;&lt;br/&gt;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"&lt;br/&gt;&lt;br/&gt;&lt;img src="http://forum.strataframe.net/Uploads/Images/792bdb01-5454-4cd7-b3f4-1e62.png" alt="http://forum.strataframe.net/Uploads/Images/792bdb01-5454-4cd7-b3f4-1e62.png" /&gt;&lt;br/&gt;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.&amp;nbsp; Anyway, very useful feature.</description><pubDate>Thu, 24 Oct 2013 07:36:29 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32242.aspx</link><description>Funny, I had never seen this Search feature. &lt;span&gt;&lt;span&gt;:blush:&lt;/span&gt;&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;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.</description><pubDate>Thu, 24 Oct 2013 06:46:43 GMT</pubDate><dc:creator>Ivan George Borges</dc:creator></item><item><title>RE: Search Panel Not Functional</title><link>http://forum.strataframe.net/FindPost32241.aspx</link><description>Hi William,&lt;br/&gt;&lt;br/&gt;I use that functionality all the time with VS2012 and MS-SQL2012.&amp;nbsp; Make sure you are using the SF version 1.7.6.0.</description><pubDate>Wed, 23 Oct 2013 22:24:50 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item></channel></rss>