TKC Blog

SQL Server

SQL Server related articles.

    13
     Here is some SQL code for paging data from a large tables.  This code is handy for when you want to present data from a large table in a gr...

    [Read the rest of this article...]

    13
    To do a search and replace in an SQL table use the following code: UPDATE <TABLE NAME> SET <COLUMN NAME> = CAST(REPLACE(CAST(<COLUMN ...

    [Read the rest of this article...]

    15
    The query below will find any stored procedures or tables modified within the last seven days: SELECT name AS [Stored Procedures]   ...

    [Read the rest of this article...]

    Posted in: SQL Server
    15
    You might find the following two SQL queries handy. They find a string within the SQL code of a stored procedure or view. -- Stored Procedure – looki...

    [Read the rest of this article...]

    Posted in: SQL Server
    Search Blog