I am working on the sql 2012 server express edition.
I want to assign the default values to all columns of all tables in all user databases.
- All numeric, int, smallint, tinyint etc 0 default value
- All date related fields '01-jan-1900' default value
- All character fields (Varchar etc) '' default value
- All Logical fields 0 default value
I do not want to do it with table designer. How to do it with command or stored procedure.
This default value is not to be set for the primary key fields and auto increment fields (Identity Columns).
I am new to SQL programming and all the times I have to take care for the NULL values and for my working the NULL have no significance other than thier default values. It is to be done for the all existing tables.
You can try a solution like this for each database: