Viewing 11 posts - 1 through 11 (of 11 total)
Gary Varga (12/19/2014)
December 19, 2014 at 11:27 am
Go even one more step with DDL triggers. Log everything happening at DDL level from the servers themselves. This way you track normal releases and the dynamic changes to SQL...
December 15, 2014 at 10:06 am
here's a solution but it only does first occurance - could make case into a function and call multiple times or make it recursive where noted
WITH SampleData(test) AS (
SELECT 'rstedsvej...
September 25, 2013 at 9:50 am
In addition to developers' use of version control products in studios apps, we have a database trigger which logs all DDL changes. So every DDL change is logged into a...
May 17, 2013 at 8:34 am
no recursion (L to R no precedence either) - needs a tally table - uses the split like logic:
-- select dbo.fnSimpleMath( '3.5 * 2.2' ) , dbo.fnSimpleMath( '3 +...
November 22, 2011 at 9:10 am
PayScale.com has many inputs (including experience and employer type for determining salary ranges).
July 22, 2011 at 9:21 am
break the street name into words (use split function with space as separator) , replace hyphens in words that contain no numbers and then concat the words back together (in...
October 22, 2010 at 8:44 am
[p]you can change the where clause to a like if you input is like Express near3("next,SQL"):[/p]
and ','+@searchString +',' like '%,'+N.Data+',%' -- commas are so substring words don't match...
August 27, 2010 at 3:58 pm
declare @searchTable table( TextValue varchar(max))
insert into @searchTable values ('SQL Server 2005 Express Edition is the next version of MSDE and is a free, easy-to-use, lightweight, and embeddable version of...
August 27, 2010 at 11:28 am
there is a good article on this at http://www.sqlteam.com/article/using-ddl-triggers-in-sql-server-2005-to-capture-schema-changes
June 3, 2010 at 10:56 am
Assumptions:
1. "-" hyphens separate merged facility , (patient2 facility2) and patient 1
2. "with" can separate patient2 from facility2
3. ids can be variable length and are separated from label...
June 3, 2010 at 10:42 am
Viewing 11 posts - 1 through 11 (of 11 total)