Wednesday, April 6, 2016

SQL Search tools all developers and DBAs can use

If you work with SQL Server sooner or later you will be looking for a good sql search tool that allows you to search through all the objects and the code in a sql server database to find a certain stored procedure or a certain function or a trigger or a view or a table etc. We have two great tools that I use on a regular bases and that you should find very helpful too:

  1. xSQL Object Search 
    • a completely free sql search tool
    • a sql search tool that does not need to be installed - just a simple, stand alone executable that has no dependencies of any sort
    • a sql search tool that allows you to search in all databases in a sql server at once
    • a sql search tool that allows you to search for a given phrase in the name of the object, in the definition of the object or in both; 
    • a sql search tool that allows you to use matching criteria such as "contains", "exact match", "sql expression", "regular expression" etc.  
  2. xSQL Documenter - this one was not intended as a sql search tool but I find it very convenient to use for that purpose. Especially helpful are the color coded dependency graphs that are shown for each object and allow you to easily navigate through the dependency tree and locate the object you are after. 

Related Posts:

  • Using xSQL Profiler with a limited access SQL userThe process of tracing events on a SQL Server and collecting those event data, is not among the usual tasks that a user performs on SQL Server. Because of this, the T-SQL commands that are executed to perform the start / stop… Read More
  • SQL Server Expressers out there, we got you!One of the most powerful features SQL Server has, is it's ability to monitor just about every aspect of it's operation with mechanisms such as SQL traces. A SQL Trace is an internal SQL Server mechanism for capturing events w… Read More
  • xSQL Profiler 2.1 now available We just published a new version (2.1) of xSQL Profiler with built-in support for tracing low level SQL Server events. Now, if you want to create a trace for a specific SQL Server event, you don't have to create a new event de… Read More
  • SQL Server: DATETIME vs DATETIME2When it comes to a choice between data types for a field in a SQL Server database's table, an issue that is frequently discussed in popular forums is a choice between the DATETIME and DATETIME2 data types. According to the of… Read More
  • Installing the new xSQL Profiler 2.1We just released the newest version of our xSQL Profiler and besides the increased range of supported SQL Server versions and events that can be traced, as well as some other bug fixes and improvements there were some changes… Read More

0 comments:

Post a Comment