|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Monday, May 20, 2013 5:40 AM
Points: 233,
Visits: 434
|
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, April 05, 2013 12:29 PM
Points: 67,
Visits: 227
|
|
| The link to "sql.soendergaard.info" says "no scripts found".
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Monday, May 20, 2013 5:40 AM
Points: 233,
Visits: 434
|
|
use these links below or type the sql.soendergaard.info. in the address bar.
-- # You can download a complete install script here. -- # http://files.soendergaard.info/Install_spFixColumnDefaultNaming_V2005-2008.sql -- # -- # I also have a test case script, which can be tried out in tempdb -- # -- # http://files.soendergaard.info/TestCasesOnly_spFixColumnDefaultNaming_V2005-2008.sql
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, April 05, 2013 12:29 PM
Points: 67,
Visits: 227
|
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, March 06, 2013 7:57 AM
Points: 47,
Visits: 183
|
|
Just used this last night. Fixed 4,500 naming violations. Wow. I had no idea people here were so bad at keeping up with our internal naming conventions. Stuff like default constraints get ignored every time!
I have to say, thank you very much for providing this script.
Overall, this was one of the easiest scripts I ever used and I was in and out in 5 minutes. Beautiful.
My only "missing feature" complaint would be that it doesn't let me deploy this to a "dbacode" database and provide a @Database parameter to say which database to run it in.
My only "bug report" complaint is that the script can't handle situations where it is renaming a default constraint to one already in the database. Usually this happens when people rename columns. I personally don't mind hunting down the offending problem, though, and fixing it manually.
Since I didn't want to keep this code in the general production databases, I added this afterward:
drop table dbautils.aliasrules drop synonym dbautils.aliasrulessynonym drop function dbautils.fnGetFilteredObjects drop function dbautils.fnGetFilteredTables drop function dbautils.fnGetObjectAliases drop function dbautils.fnStringList2Table drop procedure dbautils.spFixColumnDefaultNaming drop schema dbautils
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Monday, May 20, 2013 5:40 AM
Points: 233,
Visits: 434
|
|
Thanks for the feedback.
Your are right with the issue with renamed columns, I have already runned into it, but it is not easy to fix, as it would need to be aware of the changed it is going to do, and with defaults matching other columns. Because of this I decided people should tweak the scripts themselves
I would also like to have every dba proc's in one database, but it is not possible to do dynamic sql in table valued functions. This means that all my renaming sproces would have to duplicate the TVF code into the sproc sometimes numerous times, and that would make code reuse and maintenance impossible.
The reason I have to use dynamic code in TVF, is because I query sys tables a lot, and those contain local database schema information only, hense the need for dynamic sql. I also use the TVF alot in other unpublished script at work. It would have been nice if Transact SQL supported the ability to have functions inside sprocs, which can only be called from the sproc. Kinda like functions declared in functions as in pascal
|
|
|
|