2012-08-24 (first published: 2007-09-29)
1,684 reads
2012-08-24 (first published: 2007-09-29)
1,684 reads
This table Valued Function return the Modified Objects (SP /Views) For the Date specified.
2011-10-07 (first published: 2007-11-23)
1,381 reads
In development enviornment we always get the modifications in tables from developers.As far as my concern writing scripts is tedious work for us. I hope below script will help you.
2009-10-30 (first published: 2009-10-01)
1,337 reads
2009-10-21 (first published: 2009-10-01)
2,288 reads
2008-10-10 (first published: 2008-07-20)
1,876 reads
Script to return Rows count from table using sp_ExecuteSQL
2008-09-26 (first published: 2008-07-20)
1,526 reads
2008-09-19 (first published: 2008-07-20)
1,478 reads
2008-09-08 (first published: 2008-07-20)
1,267 reads
2008-07-20
2,002 reads
2008-07-20
1,605 reads
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers