Quantcast
Channel: myrocode - Sql
Browsing latest articles
Browse All 6 View Live

SQL Server - Find all Tables in Database that contains a specific column

If you need to query your sql server's database to find out where a specific column is present into a table's schema, you can lauch this query against your database. USE YOUR_DATA_BASE_NAME GO SELECT...

View Article



SQL Find all procedures that contains a specific text

Let's says you need to find out all the stored procedures that reference a column or that just contains a text. You can use: SELECT ROUTINE_NAME, ROUTINE_DEFINITION      FROM...

View Article

Execute a stored procedure at SQL Server Management Studio with output parameter

Here's a reminder for myself when I need to launch a stored procedure with an output parameter directly from SQL Server Management. Who knows... maybe can helps you too. declare @P1 int set @P1=NULL...

View Article

Find a table by name into SQL Server 2000 and SQLServer 2005

In SQL Server 2005 you can get a list of all your Tables with a particular name using the system table sys.table: SELECT * FROM sys.tables WHERE name LIKE '%YOUR_TABLE_NAME%' but if you need to do the...

View Article

Image may be NSFW.
Clik here to view.

Working with DashCommerce 3.x - recreate the SQL Full Text Catalog

The SQL Full Text Catalog, provides a fast search of you products into you DashCommerce's  database. But what happens if you mess up the catalog? You will receive errors like A critical error has...

View Article


How to reset administrator o sa account's password in SQL Server

If you are locked out and cannot login in your Sql Server event if you are logged on the server as an Administrator, do the following steps to reset sa's password: Open the command prompt (Right-Click...

View Article
Browsing latest articles
Browse All 6 View Live




Latest Images