How to Search for a String in All Tables in a Database
If you want to look where a string is in all tables in a database, how do you do that? Here’s a very helpful SQL to run: Further Reading How to Get Names of All Tables in SQL Server How to Find a...
View ArticleHow to Remove Cached Credentials without Rebooting Windows
The typical situation is you’ve connected to a network share with a User ID and a password. Then for one reason or another, the password was changed. As soon as you get asked to enter the User ID and...
View ArticleHow to Find a String in SQL Server Stored Procedures
This is just quick tip found from this link and is actually good to use as a starting point: Further Reading How to Find All References to an Object in a SQL Server Database How to Search for a String...
View ArticleHow to View Stored Procedure Code in SQL Server
The most common way to view the code of a stored procedure in SSMS is doing a right-click on the stored procedure and select Script Stored Procedure as and select CREATE To. But this is not practical...
View Article